Skip to content

Commit 81be2c9

Browse files
committed
docs: clarify lqe error covariance wording
1 parent 146ccee commit 81be2c9

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

control/stochsys.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ def lqe(*args, **kwargs):
5454
5555
.. math:: dx_e/dt = A x_e + B u + L(y - C x_e - D u)
5656
57-
produces a state estimate x_e that minimizes the expected squared error
58-
using the sensor measurements y. The noise cross-correlation `NN` is
59-
set to zero when omitted.
57+
produces a state estimate x_e whose steady-state estimation error
58+
x - x_e has minimum covariance using the sensor measurements y. The
59+
noise cross-correlation `NN` is set to zero when omitted.
6060
6161
The function can be called with either 3, 4, 5, or 6 arguments:
6262
@@ -204,9 +204,9 @@ def dlqe(*args, **kwargs):
204204
205205
.. math:: x_e[n+1] = A x_e[n] + B u[n] + L(y[n] - C x_e[n] - D u[n])
206206
207-
produces a state estimate x_e[n] that minimizes the expected squared
208-
error using the sensor measurements y. The noise cross-correlation `NN`
209-
is set to zero when omitted.
207+
produces a state estimate x_e[n] whose steady-state estimation error
208+
x[n] - x_e[n] has minimum covariance using the sensor measurements y.
209+
The noise cross-correlation `NN` is set to zero when omitted.
210210
211211
Parameters
212212
----------

0 commit comments

Comments
 (0)