Initail commit

This commit is contained in:
jimmy 2023-07-17 19:49:15 +12:00
commit d9ade28a36
7 changed files with 501 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.venv

File diff suppressed because one or more lines are too long

View File

227
fft.ipynb Normal file

File diff suppressed because one or more lines are too long

0
fft.py Normal file
View File

4
requirements.txt Normal file
View File

@ -0,0 +1,4 @@
jupyterlab
numpy
matplotlib
scipy

14
run.sh Executable file
View File

@ -0,0 +1,14 @@
#!/usr/bin/env bash
# if .venv does not exist, create it
if [ ! -d ".venv" ]; then
echo "Creating virtual environment..."
python3 -m venv .venv
fi
. .venv/bin/activate
pip install -r requirements.txt
jupyter lab fft.ipynb
```