Skip to content

Commit 39c9c05

Browse files
committed
Run black
1 parent 151da4c commit 39c9c05

File tree

1 file changed

+2
-2
lines changed
  • source/docs/software/advanced-controls/state-space

1 file changed

+2
-2
lines changed

source/docs/software/advanced-controls/state-space/graph.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ def lqr(*args, **kwargs):
6060
x1 = np.array([[0]])
6161
x2 = np.array([[0]])
6262

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)]]))
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)]]))
6565

6666
t1 = []
6767
x1data = []

0 commit comments

Comments
 (0)