0.1.0 • Published 5 months ago

frost-fft v0.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
5 months ago

frost-fft

The world didn't need yet another Fast Fourier Transform (FFT) implementation, but here we are...

import {fft} from 'frost-fft';

const signal = new Float64Array(256).map(Math.random);

const [realCoefs, imagCoefs] = fft(
  signal,
  signal.map(() => 0)
);

Documentation

Documentation is hosted at the project Github pages.

To generate documentation locally run:

npm run doc