Skip to content

Commit

Permalink
Docstring fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bwohlberg committed Oct 5, 2024
1 parent 1497ee6 commit 97f3b05
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scico/linop/xray/_xray.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,10 @@ def back_project(self, y: ArrayLike) -> snp.Array:
return XRayTransform2D._back_project(y, self.x0, self.dx, self.nx, self.y0, self.angles)

def fbp(self, y: ArrayLike) -> snp.Array:
"""Compute Filter Back Projection inverse of projection.
"""Compute filtered back projection (FBP) inverse of projection.
Compute the Filter Back Projection inverse by filtering each row
of the sinogram with the filter defined in (61) in
Compute the filtered back projection inverse by filtering each
row of the sinogram with the filter defined in (61) in
:cite:`kak-1988-principles` and then back projecting. The
projection angles are assumed to be evenly spaced: poor results
may be obtained if this assumption is violated.
Expand All @@ -137,7 +137,7 @@ def fbp(self, y: ArrayLike) -> snp.Array:
y: Input projection, (num_angles, N).
Returns:
Filtered Back Projection inverse of projection.
FBP inverse of projection.
"""

N = y.shape[1]
Expand Down

0 comments on commit 97f3b05

Please sign in to comment.