fftw
function for determining FFT algorithm.
📝Syntax
m = fftw('planner')
fftw('planner', m)
w = fftw('dwisdom')
fftw('dwisdom', w)
w = fftw('swisdom')
fftw('swisdom', w)
📥Input Arguments
Parameter Description
m method for setting transform parameters: 'estimate', 'measure', 'patient', 'exhaustive', or 'hybrid'.
w a string: wisdom data.
📤Output Arguments
Parameter Description
m method: 'estimate', 'measure', 'patient', 'exhaustive', or 'hybrid'.
w a string: wisdom data.
📄Description

The default method is 'estimate'.

💡Examples
w = fftw('dwisdom')
M = rand(1000);
tic; fft(M); toc
fftw('dwisdom', w)
tic; fft(M); toc
🔗See Also
fftifft
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub