Cloud hardware project 1 and ch5 questions

This commit is contained in:
Aidan Sharpe
2025-03-13 00:07:37 -04:00
parent 75ff89644d
commit e013dcbed6
21 changed files with 87 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
Assesment is not a constraint, as it does not prevent me from reaching design requirements.
Potentially constrained by the quality of data in the database
Constrained by the efficacy of static filters
Try to fit Gantt chart on one page
Extra Gantt chart week at end?

View File

@@ -0,0 +1,25 @@
import numpy as np
import scipy as sp
import matplotlib.pyplot as plt
def u(n):
return np.heaviside(n, 1)
def ideal_lowpass(omega, omega_c):
return np.where(np.abs(omega) <= omega_c, 1, 0)
def main():
omega_c = 0.4*np.pi
omega = np.arange(0, np.pi, 0.05*np.pi)
h_lpf = ideal_lowpass(omega, omega_c)
plt.plot(omega, h_lpf)
plt.show()
if __name__ == "__main__":
main()