Skip to content

Commit 31729c8

Browse files
committed
remove comment per @sawyerbfuller
1 parent 06aa0d8 commit 31729c8

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

control/statefbk.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,6 @@ def lqe(*args, **keywords):
393393
N.shape[0] != ninputs or N.shape[1] != noutputs):
394394
raise ControlDimension("incorrect covariance matrix dimensions")
395395

396-
# LT, P, E = lqr(A.T, C.T, G @ Q @ G.T, R)
397396
# P, E, LT = care(A.T, C.T, G @ Q @ G.T, R)
398397
P, E, LT = care(A.T, C.T, np.dot(np.dot(G, Q), G.T), R)
399398
return _ssmatrix(LT.T), _ssmatrix(P), E

0 commit comments

Comments
 (0)