https://github.com/make-github-pseudonymous-again/js-fft
:butterfly: Fast Fourier Transform algorithms for JavaScript
https://github.com/make-github-pseudonymous-again/js-fft
agpl algorithms computer-science discrete-fourrier-transform fast-fourrier-transform fft fourrier fourrier-transform ifft javascript mathematics transform
Last synced: 2 months ago
JSON representation
:butterfly: Fast Fourier Transform algorithms for JavaScript
- Host: GitHub
- URL: https://github.com/make-github-pseudonymous-again/js-fft
- Owner: make-github-pseudonymous-again
- License: agpl-3.0
- Created: 2015-06-30T20:14:16.000Z (over 10 years ago)
- Default Branch: main
- Last Pushed: 2021-04-26T14:08:58.000Z (over 4 years ago)
- Last Synced: 2025-02-11T10:06:35.329Z (8 months ago)
- Topics: agpl, algorithms, computer-science, discrete-fourrier-transform, fast-fourrier-transform, fft, fourrier, fourrier-transform, ifft, javascript, mathematics, transform
- Language: JavaScript
- Homepage: https://aureooms.github.io/js-fft
- Size: 1.28 MB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
:butterfly: [@aureooms/js-fft](https://make-github-pseudonymous-again.github.io/js-fft)
==
![]()
Fast Fourier Transform algorithm for JavaScript.
See [docs](https://make-github-pseudonymous-again.github.io/js-fft).
Parent is [@aureooms/js-algorithms](https://github.com/make-github-pseudonymous-again/js-algorithms).```js
fft( l , m , _u , 0 , n , u , 0 , n ) ; // O(n log n)
fft( l , m , _v , 0 , n , v , 0 , n ) ; // O(n log n)
convolution( u , 0 , n , v , 0 , n ) ; // O(n)
ifft( l , m , u , 0 , n , _u , 0 , n ) ; // O(n log n)
```[](https://raw.githubusercontent.com/make-github-pseudonymous-again/js-fft/main/LICENSE)
[](https://www.npmjs.org/package/@aureooms/js-fft)
[](https://travis-ci.org/make-github-pseudonymous-again/js-fft/branches)
[](https://david-dm.org/make-github-pseudonymous-again/js-fft)
[](https://david-dm.org/make-github-pseudonymous-again/js-fft?type=dev)
[](https://github.com/make-github-pseudonymous-again/js-fft/issues)
[](https://www.npmjs.org/package/@aureooms/js-fft)[](https://codeclimate.com/github/make-github-pseudonymous-again/js-fft/issues)
[](https://codeclimate.com/github/make-github-pseudonymous-again/js-fft/trends/churn)
[](https://codecov.io/gh/make-github-pseudonymous-again/js-fft)
[](https://codeclimate.com/github/make-github-pseudonymous-again/js-fft/trends/technical_debt)
[](https://make-github-pseudonymous-again.github.io/js-fft/source.html)
[](https://bundlephobia.com/result?p=@aureooms/js-fft)## :dancing_women: Related
- [@aureooms/js-fft-integer](https://github.com/make-github-pseudonymous-again/js-fft-integer)
## :scroll: References
- [Some python code with good comments](https://github.com/aureooms-research/fft/blob/main/code/polynomials.py#L4)