File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed
autoarray/inversion/inversion/imaging Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments