brokencube / fft
Simple fast FFT class
1.0.1
2015-08-14 23:42 UTC
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2024-11-09 17:50:56 UTC
README
PHP FFT class based on Javascript implementation from http://rosettacode.org/wiki/Fast_Fourier_transform#Javascript
Originally used a Complex class, as per the original javascript, but moved to twin arrays ($real, $im) and inlining the complex arithmatic after benchmarks showed that to be at least twice as fast.