changeset 6971:0a9d97cf2e13

[project @ 2007-10-07 19:44:53 by dbateman]
author dbateman
date Sun, 07 Oct 2007 19:44:53 +0000
parents 3113e481833f
children b5a6f5c71451
files src/DLD-FUNCTIONS/fft.cc src/DLD-FUNCTIONS/fft2.cc src/DLD-FUNCTIONS/fftn.cc
diffstat 3 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- 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);
--- 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);
--- 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);