We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d25b8b commit 23d90d6Copy full SHA for 23d90d6
control/timeresp.py
@@ -65,6 +65,9 @@
65
capability and better automatic time vector creation
66
Date: June 2020
67
68
+Modified by Ilhan Polat to improve automatic time vector creation
69
+Date: August 17, 2020
70
+
71
$Id$
72
"""
73
@@ -940,7 +943,7 @@ def _ideal_tfinal_and_dt(sys, is_step=True):
940
943
# Incorporate balancing to outer factors
941
944
l[perm, :] *= np.reciprocal(sca)[:, None]
942
945
r[perm, :] *= sca[:, None]
- w, v = sys_ss.C @ r, l.T.conj() @ sys_ss.B
946
+ w, v = sys_ss.C.dot(r), l.T.conj().dot(sys_ss.B)
947
948
origin = False
949
# Computing the "size" of the response of each simple mode
0 commit comments