kml_ffth_execute_dft_scale_c2r
Execute the created FFT plan. However, kml_ffth_execute_dft_c2r can accept new input and output data different from the plan data as parameters.
Interface Definition
C interface:
void kml_ffth_execute_dft_scale_c2r(const kml_ffth_plan p, kml_ffth_complex *in, float *out);
Parameters
Parameter |
Data Type |
Description |
Input/Output |
|---|---|---|---|
p |
|
FFT plan obtained by calling the plan function. |
Input |
in |
|
Inputs the data to be transformed. |
Input |
out |
|
Outputs the data generated using FFT. |
Output |
Dependencies
C: "kfft.h"
Examples
See C2R Transforms.
Parent topic: FFT Execution Functions