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 151da4c commit 39c9c05Copy full SHA for 39c9c05
source/docs/software/advanced-controls/state-space/graph.py
@@ -60,8 +60,8 @@ def lqr(*args, **kwargs):
60
x1 = np.array([[0]])
61
x2 = np.array([[0]])
62
63
-K1 = lqr(sysd, np.array([[1.0 / (1.0 ** 2)]]), np.array([[1.0 / (12.0 ** 2)]]))
64
-K2 = lqr(sysd, np.array([[1.0 / (0.1 ** 2)]]), np.array([[1.0 / (12.0 ** 2)]]))
+K1 = lqr(sysd, np.array([[1.0 / (1.0**2)]]), np.array([[1.0 / (12.0**2)]]))
+K2 = lqr(sysd, np.array([[1.0 / (0.1**2)]]), np.array([[1.0 / (12.0**2)]]))
65
66
t1 = []
67
x1data = []
0 commit comments