|
arduino-audio-tools
|
Driver for RealFFT. More...
#include <AudioKissFFT.h>
Public Member Functions | |
| bool | begin (int len) override |
| void | end () override |
| void | fft () override |
| Perform FFT. | |
| bool | getBin (int pos, FFTBin &bin) override |
| gets the value of a bin | |
| float | getValue (int idx) override |
| Get result value from Reverse FFT. | |
| bool | isReverseFFT () override |
| Returns true if reverse FFT is supported. | |
| bool | isValid () override |
| float | magnitude (int idx) override |
| Calculate the magnitude (fft result) at index (sqr(i² + r²)) | |
| float | magnitudeFast (int idx) override |
| magnitude w/o sqrt | |
| void | rfft () override |
| Calculate reverse FFT. | |
| bool | setBin (int pos, FFTBin &bin) |
| bool | setBin (int pos, float real, float img) override |
| sets the value of a bin | |
| void | setValue (int idx, float value) override |
| Sets the real value. | |
Public Attributes | |
| Vector< kiss_fft_cpx > | k_data {0} |
| int | len = 0 |
| kiss_fft_cfg | p_fft_object =nullptr |
| kiss_fft_cfg | p_fft_object_inv =nullptr |
Driver for RealFFT.
gets the value of a bin
Reimplemented from FFTDriver.
Get result value from Reverse FFT.
Implements FFTDriver.
|
inlineoverridevirtual |
Returns true if reverse FFT is supported.
Reimplemented from FFTDriver.
Calculate the magnitude (fft result) at index (sqr(i² + r²))
Implements FFTDriver.
sets the value of a bin
Reimplemented from FFTDriver.
Sets the real value.
Implements FFTDriver.
| Vector<kiss_fft_cpx> k_data {0} |
| int len = 0 |
| kiss_fft_cfg p_fft_object =nullptr |
| kiss_fft_cfg p_fft_object_inv =nullptr |