我要评分
获取效率
正确性
完整性
易理解

kml_fft(f)_execute_split_dft_r2c

Interface Definition

C interface:

void kml_fft_execute_split_dft_r2c(const kml_fft_plan p, double *in, double *ro, double *io);

void kml_fftf_execute_split_dft_r2c(const kml_fftf_plan p, float *in, float *ro, float *io);

Fortran interface:

CALL KML_FFT_EXECUTE_SPLIT_DFT_R2C(P, IN, RO, IO);

CALL KML_FFTF_EXECUTE_SPLIT_DFT_R2C(P, IN, RO, IO);

Parameters

Parameter

Data Type

Description

Input/Output

p

  • Double precision: const kml_fft_plan
  • Single precision: const kml_fftf_plan

FFT plan obtained by calling the plan function.

Input

in

  • Double precision: double*
  • Single precision: float*

Inputs the data to be transformed.

Input

ro

  • Double precision: double*
  • Single precision: float*

Outputs the real part of the data to be transformed.

Output

io

  • Double precision: double*
  • Single precision: float*

Outputs the imaginary part of the data to be transformed.

Output

Dependencies

C: "kfft.h"

Fortran: "kfft.f03"

Examples

See R2C Transforms.