当前位置: 首页 > 工具软件 > PlanOut > 使用案例 >

fftw_plan_dft_1d 函数原型

贝洲
2023-12-01

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*,表示复数数组。
  • `out
 类似资料: