@@ -487,12 +487,12 @@ def convolved_array_from(self, array: Array2D) -> Array2D:
487487
488488 def convolve_image (self , image , blurring_image , jax_method = "fft" ):
489489 """
490- For a given 1D array and blurring array, convolve the two using this convolver .
490+ For a given 1D array and blurring array, convolve the two using this psf .
491491
492492 Parameters
493493 ----------
494494 image
495- 1D array of the values which are to be blurred with the convolver 's PSF.
495+ 1D array of the values which are to be blurred with the psf 's PSF.
496496 blurring_image
497497 1D array of the blurring values which blur into the array after PSF convolution.
498498 jax_method
@@ -530,12 +530,12 @@ def convolve_image(self, image, blurring_image, jax_method="fft"):
530530
531531 def convolve_image_no_blurring (self , image , mask , jax_method = "fft" ):
532532 """
533- For a given 1D array and blurring array, convolve the two using this convolver .
533+ For a given 1D array and blurring array, convolve the two using this psf .
534534
535535 Parameters
536536 ----------
537537 image
538- 1D array of the values which are to be blurred with the convolver 's PSF.
538+ 1D array of the values which are to be blurred with the psf 's PSF.
539539 blurring_image
540540 1D array of the blurring values which blur into the array after PSF convolution.
541541 jax_method
@@ -562,12 +562,12 @@ def convolve_image_no_blurring(self, image, mask, jax_method="fft"):
562562 return Array2D (values = convolved_array_1d , mask = mask )
563563
564564 def convolve_mapping_matrix (self , mapping_matrix , mask ):
565- """For a given 1D array and blurring array, convolve the two using this convolver .
565+ """For a given 1D array and blurring array, convolve the two using this psf .
566566
567567 Parameters
568568 ----------
569569 image
570- 1D array of the values which are to be blurred with the convolver 's PSF.
570+ 1D array of the values which are to be blurred with the psf 's PSF.
571571 """
572572 return jax .vmap (self .convolve_image_no_blurring , in_axes = (1 , None ))(
573573 mapping_matrix , mask
0 commit comments