@@ -36,8 +36,8 @@ struct SteadyKalmanFilter <: StateEstimator
3636 catch my_error
3737 if isa (my_error, ErrorException)
3838 error (" Cannot compute the optimal Kalman gain K for the " *
39- " SteadyKalmanFilter. You may try to remove integrators with nint_ym " *
40- " parameter or use the time-varying KalmanFilter." )
39+ " SteadyKalmanFilter. You may try to remove integrators with " *
40+ " nint_u/nint_ym parameter or use the time-varying KalmanFilter." )
4141 else
4242 rethrow ()
4343 end
@@ -236,7 +236,7 @@ The process model is identical to [`SteadyKalmanFilter`](@ref). The matrix
236236``\m athbf{P̂}_k(k+1)`` is the estimation error covariance of `model` states augmented with
237237the stochastic ones (specified by `nint_ym`). Three keyword arguments modify its initial
238238value with ``\m athbf{P̂}_{-1}(0) =
239- \m athrm{diag}\{ \m athbf{Q }(0), \m athbf{Q_ {int_{u}}}(0), \m athbf{Q_ {int_{ym}}} \} ``.
239+ \m athrm{diag}\{ \m athbf{P }(0), \m athbf{P_ {int_{u}}}(0), \m athbf{P_ {int_{ym}}} \} ``.
240240
241241# Arguments
242242- `model::LinModel` : (deterministic) model for the estimations.
@@ -245,8 +245,8 @@ value with ``\mathbf{P̂}_{-1}(0) =
245245- `σP0int_u=fill(1,sum(nint_u))` : same than `σP0` but for the unmeasured disturbances at
246246 manipulated inputs ``\m athbf{P_{int_u}}`` (composed of integrators).
247247 covariance ``\m athbf{P_{int}}(0)`` (composed of output integrators).
248- - `σQint_ym =fill(1,sum(nint_u ))` : same than `σP0` but for the unmeasured disturbances at
249- measured outputs ``\m athbf{Q_ {int_{ym}}}`` (composed of integrators).
248+ - `σP0int_ym =fill(1,sum(nint_ym ))` : same than `σP0` but for the unmeasured disturbances at
249+ measured outputs ``\m athbf{P_ {int_{ym}}}`` (composed of integrators).
250250- `<keyword arguments>` of [`SteadyKalmanFilter`](@ref) constructor.
251251
252252# Examples
0 commit comments