![]() |
CMSIS-DSP
Verison 1.1.0
CMSIS DSP Software Library
|
Functions | |
void | arm_cfft_radix2_f32 (const arm_cfft_radix2_instance_f32 *S, float32_t *pSrc) |
Processing function for the floating-point Radix-2 CFFT/CIFFT. | |
void | arm_radix2_butterfly_f32 (float32_t *pSrc, uint32_t fftLen, float32_t *pCoef, uint16_t twidCoefModifier) |
Core function for the f32 FFT butterfly process. | |
void | arm_radix2_butterfly_inverse_f32 (float32_t *pSrc, uint32_t fftLen, float32_t *pCoef, uint16_t twidCoefModifier, float32_t onebyfftLen) |
Core function for the f32 IFFT butterfly process. |
void arm_radix2_butterfly_f32 | ( | float32_t * | pSrc, |
uint32_t | fftLen, | ||
float32_t * | pCoef, | ||
uint16_t | twidCoefModifier | ||
) |
end of Radix2_CFFT_CIFFT group
Referenced by arm_cfft_radix2_f32().
void arm_radix2_butterfly_inverse_f32 | ( | float32_t * | pSrc, |
uint32_t | fftLen, | ||
float32_t * | pCoef, | ||
uint16_t | twidCoefModifier, | ||
float32_t | onebyfftLen | ||
) |
[in,out] | *pSrc | points to the in-place buffer of f32 data type. |
[in] | fftLen | length of the FFT. |
[in] | *pCoef | points to Twiddle coefficient buffer. |
[in] | twidCoefModifier | twiddle coefficient modifier that supports different size FFTs with the same twiddle factor table. |
[in] | onebyfftLen | 1/fftLenfth |
Referenced by arm_cfft_radix2_f32().