Package

purescript-fft-js

Repository
jeslie0/purescript-fft-js
License
MIT
Uploaded by
pacchettibotti
Published on
2024-01-12T02:46:28Z

Build status Pursuit

A PureScript wrapper around fft.js, providing functions to take the Fast Fourier Transform of real and complex arrays. There is also a module extending the functionality to the cartesian library.

Notes

This library exposes the public fft.js functionality in the FFT module. The module uses two newtype wrappers RealArray and ComplexArray to add a bit of type safety to the function types. A complex array is an interweaved array of real and imaginary parts: [re_0, im_0, re_1, im_1,...].

Whenever we refer to the size of an array, we mean the number of numbers in it, not elements in the array. An array interpreted as a ComplexArray will have size half of that if it is interpreted as a RealArray. This is helpfully made clear by the FFTArray typeclass, whose instances have a size function.

Installation

spago install fft-js

Documentation

Module documentation is published on Pursuit.

Modules
FFT
FFT.Complex
FFT.Internal.Array
FFT.Real
Dependencies