Define method for determining FFT algorithm
returns
the method that the fast Fourier transform functions method
= fftw('planner')fft
, fft2
, fftn
, ifft
, ifft2
,
and ifftn
use to determine a transform algorithm.
The default method is 'estimate'
, which determines
the algorithm based on the size of the data.
Transform parameters returned by fftw
are
most useful when saved and applied on one computer using the same
version of MATLAB each session. Transferring saved parameters
between computers can result in degraded performance, even if both
computers have the same operating system and MATLAB version.
For transform lengths that are powers of 2 between
214 and 222, MATLAB uses
pre-loaded information from its internal database to optimize the
transform computation. Tuning is not executed for exact powers of
2 unless you clear the database using the command fftw(wisdom,[])
.
[1] FFTW (http://www.fftw.org)