Bio week 2, superpower, fabrication week 2

This commit is contained in:
Aidan Sharpe
2025-02-04 10:47:05 -05:00
parent e112227e1d
commit 4099fad339
28 changed files with 176 additions and 11 deletions

View File

@@ -3,7 +3,7 @@ import matplotlib.pyplot as plt
def main():
f_s = 6
f_s = 48
T_s = 1/f_s
t = np.arange(-1, 1, T_s)
@@ -14,7 +14,5 @@ def main():
plt.stem(t, signal)
plt.show()
if __name__ == "__main__":
main()