⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fftw.m

📁 FFTW, a collection of fast C routines to compute the Discrete Fourier Transform in one or more dime
💻 M
字号:
function y = fftw(x,sign)%FFTW  Discrete Fourier transform (DFT)%   Y = FFTW(X,SIGN) sets Y to the DFT of X, computed via a%   fast Fourier transform algorithm. SIGN is the sign of the%   exponent in the definition of the DFT, and should be +1 or -1.%%   FFTW is designed for circumstances where repeated transforms%   of the same size are required.  The first call will incur a%   substantial startup cost (several seconds), but subsequent%   calls will execute very quickly.%%   Using SIGN = -1 corresponds to MATLAB's FFTN function.%   Using SIGN = +1 corresponds to an unnormalized IFFTN:%%      FFTW(X,+1) is the same as IFFTN(X) * PROD(SIZE(X))%%   Thus, FFTW(FFTW(X,-1),+1) / PROD(SIZE(X)) equals X.%%   The input array X may have any dimensionality.  If X%   is multi-dimensional, then a true multi-dimensional DFT%   will be computed.%%   This is an interface to the FFTW C library, which is%   described at:  http://www.fftw.org%%   See also: FFT, IFFT, FFT2, IFFT2, FFTN, IFFTN, FFTSHIFT

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -