# HG changeset patch # User dbateman # Date 1191786293 0 # Node ID 0a9d97cf2e13ec9e1a7bc68be5173c6f8ff970be # Parent 3113e481833f853f4be473cdd0a3c835ea9c218d [project @ 2007-10-07 19:44:53 by dbateman] diff -r 3113e481833f -r 0a9d97cf2e13 src/DLD-FUNCTIONS/fft.cc --- a/src/DLD-FUNCTIONS/fft.cc Sun Oct 07 02:50:27 2007 +0000 +++ b/src/DLD-FUNCTIONS/fft.cc Sun Oct 07 19:44:53 2007 +0000 @@ -180,7 +180,7 @@ \n\ If called with three arguments, @var{dim} is an integer specifying the\n\ dimension of the matrix along which the FFT is performed\n\ -@seealso{ifft, fft2, fftn, fftw_wisdom}\n\ +@seealso{ifft, fft2, fftn, fftw}\n\ @end deftypefn") { return do_fft (args, "fft", 0); @@ -206,7 +206,7 @@ \n\ If called with three agruments, @var{dim} is an integer specifying the\n\ dimension of the matrix along which the inverse FFT is performed\n\ -@seealso{fft, ifft2, ifftn, fftw_wisdom}\n\ +@seealso{fft, ifft2, ifftn, fftw}\n\ @end deftypefn") { return do_fft (args, "ifft", 1); diff -r 3113e481833f -r 0a9d97cf2e13 src/DLD-FUNCTIONS/fft2.cc --- a/src/DLD-FUNCTIONS/fft2.cc Sun Oct 07 02:50:27 2007 +0000 +++ b/src/DLD-FUNCTIONS/fft2.cc Sun Oct 07 19:44:53 2007 +0000 @@ -149,7 +149,7 @@ \n\ If @var{a} is a multi-dimensional matrix, each two-dimensional sub-matrix\n\ of @var{a} is treated seperately\n\ -@seealso {ifft2, fft, fftn, fftw_wisdom}\n\ +@seealso {ifft2, fft, fftn, fftw}\n\ @end deftypefn") { return do_fft2 (args, "fft2", 0); @@ -168,7 +168,7 @@ \n\ If @var{a} is a multi-dimensional matrix, each two-dimensional sub-matrix\n\ of @var{a} is treated seperately\n\ -@seealso {fft2, ifft, ifftn, fftw_wisdom}\n\ +@seealso {fft2, ifft, ifftn, fftw}\n\ @end deftypefn") { return do_fft2 (args, "ifft2", 1); diff -r 3113e481833f -r 0a9d97cf2e13 src/DLD-FUNCTIONS/fftn.cc --- a/src/DLD-FUNCTIONS/fftn.cc Sun Oct 07 02:50:27 2007 +0000 +++ b/src/DLD-FUNCTIONS/fftn.cc Sun Oct 07 19:44:53 2007 +0000 @@ -130,7 +130,7 @@ truncated prior to performing the FFT. Otherwise if an element\n\ of @var{size} is larger than the corresponding dimension @var{a}\n\ is resized and padded with zeros.\n\ -@seealso {ifftn, fft, fft2, fftw_wisdom}\n\ +@seealso {ifftn, fft, fft2, fftw}\n\ @end deftypefn") { return do_fftn (args, "fftn", 0); @@ -147,7 +147,7 @@ truncated prior to performing the inverse FFT. Otherwise if an element\n\ of @var{size} is larger than the corresponding dimension @var{a}\n\ is resized and padded with zeros.\n\ -@seealso {fftn, ifft, ifft2, fftw_wisdom}\n\ +@seealso {fftn, ifft, ifft2, fftw}\n\ @end deftypefn") { return do_fftn (args, "ifftn", 1);