Skip to content

Commit

Permalink
Update docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
frankong committed Feb 2, 2020
1 parent a85fa67 commit 9d69cd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sigpy/interp.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def interpolate(input, coord, kernel='spline', width=2, param=1):
.. math ::
y[j] = \sum_{i : \| i - c[j] \|_\infty \leq W / 2}
K(\frac{i - c[j]}{W / 2}) x[i]
K\left(\frac{i - c[j]}{W / 2}\right) x[i]
There are two types of kernels: 'spline' and 'kaiser_bessel'.
Expand Down Expand Up @@ -94,7 +94,7 @@ def gridding(input, coord, shape, kernel="spline", width=2, param=1):
.. math ::
x[i] = \sum_{j : \| i - c[j] \|_\infty \leq W / 2}
K(\frac{i - c[j]}{W / 2}) y[j]
K\left(\frac{i - c[j]}{W / 2}\right) y[j]
There are two types of kernels: 'spline' and 'kaiser_bessel'.
Expand Down

0 comments on commit 9d69cd5

Please sign in to comment.