# HG changeset patch # User jwe # Date 1077035002 0 # Node ID 3dfdf6f36854c3713e5f33796f1d32a849c5ec66 # Parent 5f43d12f828762d9dad55d0c52a0f0d19bfa88b9 [project @ 2004-02-17 16:23:22 by jwe] diff -r 5f43d12f8287 -r 3dfdf6f36854 src/DLD-FUNCTIONS/fft.cc --- a/src/DLD-FUNCTIONS/fft.cc Tue Feb 17 15:54:36 2004 +0000 +++ b/src/DLD-FUNCTIONS/fft.cc Tue Feb 17 16:23:22 2004 +0000 @@ -35,10 +35,8 @@ #if defined (HAVE_FFTW3) #define FFTSRC "@sc{Fftw}" -#define WISDOM ", fft_wisdom" #else #define FFTSRC "@sc{Fftpack}" -#define WISDOM #endif static octave_value @@ -161,11 +159,9 @@ If called with three agruments, @var{dim} is an integer specifying the\n\ dimension of the matrix along which the FFT is performed\n\ @end deftypefn\n\ -@seealso {ifft, fft2, fftn" -WISDOM -"}") +@seealso {ifft, fft2, fftn, fftw_wisdom}") { - return do_fft(args, "fft", 0); + return do_fft (args, "fft", 0); } @@ -189,11 +185,9 @@ 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\ @end deftypefn\n\ -@seealso {fft, ifft2, ifftn" -WISDOM -"}") +@seealso {fft, ifft2, ifftn, fftw_wisdom}") { - return do_fft(args, "ifft", 1); + return do_fft (args, "ifft", 1); } /* diff -r 5f43d12f8287 -r 3dfdf6f36854 src/DLD-FUNCTIONS/fft2.cc --- a/src/DLD-FUNCTIONS/fft2.cc Tue Feb 17 15:54:36 2004 +0000 +++ b/src/DLD-FUNCTIONS/fft2.cc Tue Feb 17 16:23:22 2004 +0000 @@ -37,10 +37,8 @@ #if defined (HAVE_FFTW3) #define FFTSRC "@sc{Fftw}" -#define WISDOM ", fft_wisdom" #else #define FFTSRC "@sc{Fftpack}" -#define WISDOM #endif static octave_value @@ -151,11 +149,9 @@ If @var{a} is a multi-dimensional matrix, each two-dimensional sub-matrix\n\ of @var{a} is treated seperately\n\ @end deftypefn\n\ -@seealso {ifft2, fft, fftn" -WISDOM -"}") +@seealso {ifft2, fft, fftn fftw_wisdom}") { - return do_fft2(args, "fft2", 0); + return do_fft2 (args, "fft2", 0); } @@ -172,11 +168,9 @@ If @var{a} is a multi-dimensional matrix, each two-dimensional sub-matrix\n\ of @var{a} is treated seperately\n\ @end deftypefn\n\ -@seealso {fft2, ifft, ifftn" -WISDOM -"}") +@seealso {fft2, ifft, ifftn, fftw_wisdom}") { - return do_fft2(args, "ifft2", 1); + return do_fft2 (args, "ifft2", 1); } /* diff -r 5f43d12f8287 -r 3dfdf6f36854 src/DLD-FUNCTIONS/fftn.cc --- a/src/DLD-FUNCTIONS/fftn.cc Tue Feb 17 15:54:36 2004 +0000 +++ b/src/DLD-FUNCTIONS/fftn.cc Tue Feb 17 16:23:22 2004 +0000 @@ -36,10 +36,8 @@ #if defined (HAVE_FFTW3) #define FFTSRC "@sc{Fftw}" -#define WISDOM ", fft_wisdom" #else #define FFTSRC "@sc{Fftpack}" -#define WISDOM #endif static octave_value @@ -132,11 +130,9 @@ of @var{siz} is larger than the corresponding dimension @var{a}\n\ is resized and padded with zeros.\n\ @end deftypefn\n\ -@seealso {ifftn, fft, fft2" -WISDOM -"}") +@seealso {ifftn, fft, fft2, fftw_wisdom}") { - return do_fftn(args, "fftn", 0); + return do_fftn (args, "fftn", 0); } DEFUN_DLD (ifftn, args, , @@ -151,11 +147,9 @@ of @var{siz} is larger than the corresponding dimension @var{a}\n\ is resized and padded with zeros.\n\ @end deftypefn\n\ -@seealso {fftn, ifft, ifft2" -WISDOM -"}") +@seealso {fftn, ifft, ifft2, fftw_wisdom}") { - return do_fftn(args, "ifftn", 1); + return do_fftn (args, "ifftn", 1); } /*