Syncing to work on interview with entrepreneur essay

This commit is contained in:
Aidan Sharpe
2024-04-14 16:42:27 -04:00
parent bd992d7643
commit 5ad6a9ca32
67 changed files with 2899 additions and 520 deletions

View File

@@ -0,0 +1,14 @@
import numpy as np
import matplotlib.pyplot as plt
N = 8
n = np.arange(N)
x = (-1.0)**n
DFT_8_point = np.fft.fft(x, 8)
DFT_9_point = np.fft.fft(x, 9)
plt.stem(abs(DFT_8_point))
plt.show()
plt.stem(abs(DFT_9_point))
plt.show()