diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2023-10-18 13:09:02 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2023-12-19 19:38:32 +0300 |
commit | 98d7cc394f060c6935664c517c2e923c5d45350b (patch) | |
tree | 75a193a5f0e247a9b351f3d2742ce491c6e5e85f /.gitignore | |
parent | 2f5b54f0905a0dc972a7681a5db2ded1231fe965 (diff) | |
download | applause2-98d7cc394f060c6935664c517c2e923c5d45350b.tar.gz |
fft.lua: added support for Fourier analysis (FFT/IFFT)
* Allows one-time analysis of arrays or short streams.
* Transformation on real-time streams
* Magnitude and phase extraction
* Windowing (only Hamming for the time being).
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -2,4 +2,7 @@ *.o /.applause_history -/doc
\ No newline at end of file +/doc + +# Jupyter notebooks +.ipynb_checkpoints/ |