mirror of
https://github.com/brendanhaines/ECEN5458_Project.git
synced 2024-12-26 10:57:55 -07:00
handle zeros at infinity
This commit is contained in:
parent
4cb989e722
commit
29e75a6b5f
|
@ -107,8 +107,9 @@ def controller():
|
|||
else:
|
||||
sample_interval = D.dt
|
||||
base_speed = 0.1
|
||||
fir_taps = np.append(D.num, 0)
|
||||
iir_taps = np.append(D.num[1:], 0)
|
||||
fir_taps = np.append(D.num, 0)
|
||||
fir_taps = np.concatenate([np.zeros(len(iir_taps)-len(fir_taps) + 1), fir_taps])
|
||||
# fir_taps = [1, 0, 0]
|
||||
# iir_taps = [0, 0]
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user