Cloud hardware project 1 and ch5 questions
This commit is contained in:
Binary file not shown.
@@ -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?
|
||||
@@ -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()
|
||||
Reference in New Issue
Block a user