Skip to content

Commit 5776a19

Browse files
committed
doc: minor mistake corrections
1 parent db2827a commit 5776a19

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/estimator/kalman.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -978,9 +978,9 @@ differentiation. This estimator is allocation-free if `model` simulations do not
978978
- `σR=fill(1,length(i_ym))` or *`sigmaR`* : main diagonal of the sensor noise covariance
979979
``\mathbf{R}`` of `model` measured outputs, specified as a standard deviation vector.
980980
- `nint_u=0`: integrator quantity for the stochastic model of the unmeasured disturbances at
981-
the manipulated inputs (vector), use `nint_u=0` for no integrator (see Extended Help).
981+
the manipulated inputs (vector), use `nint_u=0` for no integrator.
982982
- `nint_ym=default_nint(model,i_ym,nint_u)` : same than `nint_u` but for the unmeasured
983-
disturbances at the measured outputs, use `nint_ym=0` for no integrator (see Extended Help).
983+
disturbances at the measured outputs, use `nint_ym=0` for no integrator.
984984
- `σQint_u=fill(1,sum(nint_u))` or *`sigmaQint_u`* : same than `σQ` but for the unmeasured
985985
disturbances at manipulated inputs ``\mathbf{Q_{int_u}}`` (composed of integrators).
986986
- `σPint_u_0=fill(1,sum(nint_u))` or *`sigmaPint_u_0`* : same than `σP_0` but for the unmeasured

src/model/nonlinmodel.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ functions are defined as:
9090
```
9191
where ``\mathbf{x}``, ``\mathbf{y}``, ``\mathbf{u}``, ``\mathbf{d}`` and ``\mathbf{p}`` are
9292
respectively the state, output, manipulated input, measured disturbance and parameter
93-
vectors. As a mather of fact, the parameter argument `p` can be any Julia objects but use a
93+
vectors. As a matter of fact, the parameter argument `p` can be any Julia objects but use a
9494
mutable type if you want to change them later e.g.: a vector. If the dynamics is a function
9595
of the time, simply add a measured disturbance defined as ``d(t) = t``. The functions can be
9696
implemented in two possible ways:

0 commit comments

Comments
 (0)