fourier
fourier copied to clipboard
:wavy_dash: Fourier transform in JavaScript
Some references: [БЫСТРОЕ ПРЕОБРАЗОВАНИЕ ФУРЬЕ МАЛЫХ ПОРЯДКОВ, О. В. Просеков](http://dha.spb.ru/PDF/fftso.pdf)
Current FFT implementation uses classic Decimation in Time, Radix-2, in-place algorithm, which is far from being the best in class. I am comparing Float64, Float32, and Array implementations on three...
Greetings, @drom ! One question: can I process different data heaps, using the same custom FFT object? Or is each object a "one shot" processor?