From octave-maintainers-request at bevo dot che dot wisc dot edu Tue Feb 17 07:43:30 2004 Subject: Small FFTW patch From: David Bateman To: octave-maintainers at bevo dot che dot wisc dot edu Date: Tue, 17 Feb 2004 14:39:33 +0100 --yrj/dFKFPuw6o+aM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline John, When you moved fft_wisdom to fftw_wisdom, you forgot to update the at seealso fields in the help of fft, ifft, fft2, ifft2, fftn and ifftn. The following patch does this... Cheers David -- David Bateman David dot Bateman at motorola dot com Motorola CRM +33 1 69 35 48 04 (Ph) Parc Les Algorithmes, Commune de St Aubin +33 1 69 35 77 01 (Fax) 91193 Gif-Sur-Yvette FRANCE The information contained in this communication has been classified as: [x] General Business Information [ ] Motorola Internal Use Only [ ] Motorola Confidential Proprietary --yrj/dFKFPuw6o+aM Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=patch *** ./src/DLD-FUNCTIONS/fft2.cc.orig 2004-02-17 14:32:53.000000000 +0100 --- ./src/DLD-FUNCTIONS/fft2.cc 2004-02-17 14:33:37.000000000 +0100 *************** *** 37,43 **** #if defined (HAVE_FFTW3) #define FFTSRC " at sc{Fftw}" ! #define WISDOM ", fft_wisdom" #else #define FFTSRC " at sc{Fftpack}" #define WISDOM --- 37,43 ---- #if defined (HAVE_FFTW3) #define FFTSRC " at sc{Fftw}" ! #define WISDOM ", fftw_wisdom" #else #define FFTSRC " at sc{Fftpack}" #define WISDOM *** ./src/DLD-FUNCTIONS/fft.cc.orig 2004-02-17 14:32:57.000000000 +0100 --- ./src/DLD-FUNCTIONS/fft.cc 2004-02-17 14:33:26.000000000 +0100 *************** *** 35,41 **** #if defined (HAVE_FFTW3) #define FFTSRC " at sc{Fftw}" ! #define WISDOM ", fft_wisdom" #else #define FFTSRC " at sc{Fftpack}" #define WISDOM --- 35,41 ---- #if defined (HAVE_FFTW3) #define FFTSRC " at sc{Fftw}" ! #define WISDOM ", fftw_wisdom" #else #define FFTSRC " at sc{Fftpack}" #define WISDOM *** ./src/DLD-FUNCTIONS/fftn.cc.orig 2004-02-17 14:36:47.000000000 +0100 --- ./src/DLD-FUNCTIONS/fftn.cc 2004-02-17 14:33:32.000000000 +0100 *************** *** 36,42 **** #if defined (HAVE_FFTW3) #define FFTSRC " at sc{Fftw}" ! #define WISDOM ", fft_wisdom" #else #define FFTSRC " at sc{Fftpack}" #define WISDOM --- 36,42 ---- #if defined (HAVE_FFTW3) #define FFTSRC " at sc{Fftw}" ! #define WISDOM ", fftw_wisdom" #else #define FFTSRC " at sc{Fftpack}" #define WISDOM --yrj/dFKFPuw6o+aM--