File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
source/docs/software/advanced-controls/state-space Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -107,6 +107,6 @@ jobs:
107
107
- uses : actions/setup-python@v2
108
108
with :
109
109
python-version : 3.7
110
- - uses : psf/black@20.8b1
110
+ - uses : psf/black@22.1.0
111
111
with :
112
- args : " . --check"
112
+ black_args : " . --check"
Original file line number Diff line number Diff line change @@ -60,8 +60,8 @@ def lqr(*args, **kwargs):
60
60
x1 = np .array ([[0 ]])
61
61
x2 = np .array ([[0 ]])
62
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 )]]))
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 )]]))
65
65
66
66
t1 = []
67
67
x1data = []
You can’t perform that action at this time.
0 commit comments