#include "arm_math.h"
Go to the source code of this file.
Functions | |
void | arm_cfft_mag_f32 (const arm_cfft_radix4_instance_f32 *S, float32_t *pSrc) |
void | arm_cfft_mag_butterfly_f32 (float32_t *pSrc, uint16_t fftLen, float32_t *pCoef, uint16_t twidCoefModifier) |
void | arm_cfft_mag_bitreversal_f32 (float32_t *pSrc, uint16_t fftSize, uint16_t bitRevFactor, uint16_t *pBitRevTab) |
void arm_cfft_mag_butterfly_f32 | ( | float32_t * | pSrc, |
uint16_t | fftLen, | ||
float32_t * | pCoef, | ||
uint16_t | twidCoefModifier | ||
) |
Core function for the floating-point CFFT Magnitude butterfly process.
end of CFFT_CIFFT group
Definition at line 114 of file arm_cfft_mag_f32.c.
void arm_cfft_mag_bitreversal_f32 | ( | float32_t * | pSrc, |
uint16_t | fftSize, | ||
uint16_t | bitRevFactor, | ||
uint16_t * | pBitRevTab | ||
) |
In-place bit reversal function for cfft magnitude process.
[in,out] | *pSrc | points to the in-place buffer of floating-point data type. |
[in] | fftSize | length of the FFT. |
[in] | bitRevFactor | bit reversal modifier that supports different size FFTs with the same bit reversal table. |
[in] | *pBitRevTab | points to the bit reversal table. |
Definition at line 483 of file arm_cfft_mag_f32.c.