kml_ffth_execute_dft_scale

kml_ffth_execute_dft_scale执行之前建立的FFT变换plan,但是可以接受与plan不同的新的输入输出数据作为参数。

接口定义

C interface:

void kml_ffth_execute_dft(const kml_ffth_plan p, kml_ffth_complex *in, kml_ffth_float_complex *out);

参数

参数名

数据类型

描述

输入/输出

p

  • const kml_ffth_plan

通过调用plan函数得到的FFT变换plan。

输入

in

  • kml_ffth_complex*

输入待变换的数据。

输入

out

  • kml_ffth_float_complex*

输出快速傅里叶变换后的数据。

输出

依赖

C: "kfft.h"

示例

C2C变换的相关示例。