Expand description
Fast Fourier Transform (FFT), Real FFT (RFFT), Discrete Cosine Transform (DCT-IV), and Bit Reversal functions.
Functionsยง
- bit_
reversal - Bit reversal function for interleaved complex array of size
2 * n. - cfft_
f32 - In-place Complex FFT for floating point 32-bit (
f32).datais interleaved complex array of size2 * n([re0, im0, re1, im1, ...]).ifft_flag: 0 for forward FFT, 1 for inverse FFT (IFFT).bit_reverse_flag: 1 to enable bit reversal, 0 to disable. - cfft_
q15 - In-place Complex FFT for Q15 fixed-point.
- cfft_
q31 - In-place Complex FFT for Q31 fixed-point.
- dct4_
f32 - Discrete Cosine Transform Type IV (DCT-IV) for f32.
- rfft_
f32 - Real FFT for floating point 32-bit (
f32).srchasnreal samples.dstreceives2 * ncomplex outputs. - rfft_
q15 - Real FFT for Q15 fixed-point.
- rfft_
q31 - Real FFT for Q31 fixed-point.