API Documentation
|
Logic for implenting Fast Fourier Transform, a mathematical algorithm that converts signals from the time domain to the frequency domain. More...
#include <FFT.h>
Static Public Member Functions | |
static void | FT (Buffer< std::complex< t_type > > &in_out) |
static void | IFT (Buffer< std::complex< t_type > > &in_out) |
Static Protected Member Functions | |
static void | dft (const std::complex< t_type > f[], std::complex< t_type > ftilde[], uint04 N, uint04 step) |
static void | fft (Buffer< std::complex< t_type > > &in_out, Buffer< std::complex< t_type > > &temp, uint04 offset, uint04 size) |
static void | iFFT (const std::complex< t_type > ftilde[], std::complex< t_type > f[], uint04 N) |
static void | ifft (Buffer< std::complex< t_type > > &in_out, Buffer< std::complex< t_type > > &temp, uint04 offset, uint04 size) |
Logic for implenting Fast Fourier Transform, a mathematical algorithm that converts signals from the time domain to the frequency domain.
|
inlinestaticprotected |
|
inlinestaticprotected |
|
inlinestatic |
|
inlinestaticprotected |
|
inlinestaticprotected |
|
inlinestatic |