Skip to content

Commit b4a957b

Browse files
Jammy2211Copilot
andauthored
Update autoarray/inversion/inversion/imaging/abstract.py
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent dedbd78 commit b4a957b

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

autoarray/inversion/inversion/imaging/abstract.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,15 +79,12 @@ def psf(self):
7979
def mapping_matrix_list(self) -> List[np.ndarray]:
8080
"""
8181
The `mapping_matrix` of a linear object describes the mappings between the observed data's values and
82-
the linear objects model, before a operation like a convolution is applied.
82+
the linear object's model, before an operation like a convolution is applied.
8383
8484
This is used to construct the simultaneous linear equations which reconstruct the data.
8585
86-
This property returns the a list of each linear object's blurred mapping matrix, which is computed by
87-
blurring each linear object's `mapping_matrix` property with the `psf` operator.
88-
89-
A linear object may have a `operated_mapping_matrix_override` property, which bypasses the `mapping_matrix`
90-
computation and convolution operator and is directly placed in the `operated_mapping_matrix_list`.
86+
This property returns a list containing each linear object's unoperated (unconvolved) `mapping_matrix`
87+
as defined on the corresponding `LinearObj` instance.
9188
"""
9289
return [linear_obj.mapping_matrix for linear_obj in self.linear_obj_list]
9390

0 commit comments

Comments
 (0)