brokencube / fft
Simple fast FFT class
Installs: 365
Dependents: 1
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/brokencube/fft
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2025-09-27 22:12:30 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.