Functions | |
void | arm_cfft_mag_f32 (const arm_cfft_radix4_instance_f32 *S, float32_t *pSrc) |
void | arm_cfft_mag_q15 (const arm_cfft_radix4_instance_q15 *S, q15_t *pSrc) |
void | arm_cfft_mag_q31 (const arm_cfft_radix4_instance_q31 *S, q31_t *pSrc) |
2*fftLen
samples through the transform. pSrc
points to In-place arrays containing 2*fftLen
values. pdst
points to the array of buffer of size fftLen
. {real[0], real[1],..}
arm_cfft_radix4_f32()
for a detailed description CFFT F32.void arm_cfft_mag_f32 | ( | const arm_cfft_radix4_instance_f32 * | S, |
float32_t * | pSrc | ||
) |
Processing function for the floating-point CFFT Magnitude.
[in] | *S | points to an instance of the floating-point CFFT/CIFFT structure. |
[in,out] | *pSrc | points to the complex data buffer of size 2*fftLen . Processing occurs in-place. |
Definition at line 77 of file arm_cfft_mag_f32.c.
void arm_cfft_mag_q15 | ( | const arm_cfft_radix4_instance_q15 * | S, |
q15_t * | pSrc | ||
) |
Processing function for the Q15 CFFT Magnitude.
[in] | *S | points to an instance of the Q15 CFFT structure. |
[in,out] | *pSrc | points to the complex data buffer. Processing occurs in-place. |
Input and Output Formats for Q15 CFFT Magnitude
arm_cfft_radix4_q15()
for a detailed description of CFFT Q15. Definition at line 58 of file arm_cfft_mag_q15.c.
void arm_cfft_mag_q31 | ( | const arm_cfft_radix4_instance_q31 * | S, |
q31_t * | pSrc | ||
) |
Processing function for the Q31 CFFT Magnitude.
[in] | *S | points to an instance of the Q31 CFFT structure. |
[in,out] | *pSrc | points to the complex data buffer of size 2*fftLen . Processing occurs in-place. |
Input and Output Formats for Q31 CFFT Magnitude
arm_cfft_radix4_q31()
for a detailed description of CFFT Q31. Definition at line 56 of file arm_cfft_mag_q31.c.