fftw
Define method for determining FFT algorithm
Syntax
Description
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.
Examples
Input Arguments
Tips
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.
Algorithms
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,[])
.
References
[1] FFTW (https://www.fftw.org)
Extended Capabilities
Version History
Introduced before R2006a