Skip to content

Commit fbafc6c

Browse files
committed
FIX: added missing omega vector in test system ss_siso_ct
1 parent a289f8c commit fbafc6c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

control/tests/freqresp_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ def ss_siso_ct():
572572
C = np.array([[87.8]])
573573
D = np.zeros((1, 1))
574574
T = TSys(ss(A, B, C, D))
575-
T.omegas = [0.0]
575+
T.omegas = [0.0, np.array([0.0, 0.01])]
576576
T.sigmas = [np.array([[87.8]]),
577577
np.array([[87.8, 70.24]])]
578578
return T

0 commit comments

Comments
 (0)