Skip to content

Commit 600543e

Browse files
committed
minor doc correction
1 parent 01d67d1 commit 600543e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/src/public/state_estim.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ error with closed-loop control (offset-free tracking).
1414
!!! info
1515
If you plan to use the estimators for other contexts than this specific package (e.g. :
1616
filter, parameter estimation, etc.), careful must be taken at construction since the
17-
integral action is not necessarily desired. The option `nint_ym=0` disable it.
17+
integral action is not necessarily desired. The options `nint_u=0` and `nint_ym=0`
18+
disable it.
1819

1920
The estimators are all implemented in the predictor form (a.k.a. observer form), that is,
2021
they all estimates at each discrete time ``k`` the states of the next period

src/estimator/kalman.jl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -243,10 +243,9 @@ value with ``\mathbf{P̂}_{-1}(0) =
243243
- `σP0=fill(1/model.nx,model.nx)` : main diagonal of the initial estimate covariance
244244
``\mathbf{P}(0)``, specified as a standard deviation vector.
245245
- `σP0int_u=fill(1,sum(nint_u))` : same than `σP0` but for the unmeasured disturbances at
246-
manipulated inputs ``\mathbf{P_{int_u}}`` (composed of integrators).
247-
covariance ``\mathbf{P_{int}}(0)`` (composed of output integrators).
246+
manipulated inputs ``\mathbf{P_{int_u}}(0)`` (composed of integrators).
248247
- `σP0int_ym=fill(1,sum(nint_ym))` : same than `σP0` but for the unmeasured disturbances at
249-
measured outputs ``\mathbf{P_{int_{ym}}}`` (composed of integrators).
248+
measured outputs ``\mathbf{P_{int_{ym}}}(0)`` (composed of integrators).
250249
- `<keyword arguments>` of [`SteadyKalmanFilter`](@ref) constructor.
251250
252251
# Examples

0 commit comments

Comments
 (0)