赞
踩
fftw_plan_dft_1d
是 FFTW(Fastest Fourier Transform in the West)库中用于创建一维离散傅里叶变换(DFT)的计划(plan)的函数,其函数原型如下:
fftw_plan fftw_plan_dft_1d(int n, fftw_complex *in, fftw_complex *out, int sign, unsigned flags);
其中:
n
:指定一维 DFT 的长度,即信号的长度。in
:指向输入数据的指针,数据类型为 fftw_complex*
,表示复数数组。Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。