kml_ffth_execute_dft_scale_c2r

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

接口定义

C interface:

void kml_ffth_execute_dft_scale_c2r(const kml_ffth_plan p, kml_ffth_complex *in, float *out);

参数

参数名

数据类型

描述

输入/输出

p

  • const kml_ffth_plan

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

输入

in

  • kml_ffth_complex*

输入待变换的数据。

输入

out

  • float*

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

输出

依赖

C: "kfft.h"

示例

C2R变换的相关示例。