FFT setup: real-to-complex and complex-to-real \n direction: FFT_FWD or FFT_INV \n returns a handle to the FFT setup. */
| 213 | returns a handle to the FFT setup. |
| 214 | */ |
| 215 | fftp fft_setup(uint32_t size, uint32_t direction) { |
| 216 | return (fftp)RealFFT2Setup(this, size, direction); |
| 217 | } |
| 218 | |
| 219 | /** FFT operation, in-place, but also |
| 220 | returning a pointer to std::complex<MYFLT> |