Skip to content

Commit 44d57ac

Browse files
Update control/statefbk.py
Co-authored-by: Sawyer Fuller <58706249+sawyerbfuller@users.noreply.github.com>
1 parent bfc7e6b commit 44d57ac

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

control/statefbk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1070,7 +1070,7 @@ def obsv(A, C, t=None):
10701070
obsv[:p, :] = cmat
10711071

10721072
for k in range(1, t):
1073-
obsv[k * p:(k + 1) * p, :] = np.dot(obsv[(k - 1) * p:k * p, :], amat)
1073+
obsv[k * p:(k + 1) * p, :] = obsv[(k - 1) * p:k * p, :] @ amat
10741074

10751075
return _ssmatrix(obsv)
10761076

0 commit comments

Comments
 (0)