Skip to content

Commit afa1474

Browse files
committed
added: non-unicode kwargs for setmodel! on estimators
1 parent 38cd87b commit afa1474

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

src/estimator/execute.jl

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -254,11 +254,13 @@ time must stay the same. Note that the observability and controllability of the
254254
augmented model is not verified (see Extended Help for more info).
255255
256256
# Arguments
257+
!!! info
258+
Keyword arguments with *`emphasis`* are non-Unicode alternatives.
257259
258260
- `estim::StateEstimator` : estimator to set model and covariances.
259261
- `model=estim.model` : new plant model ([`NonLinModel`](@ref) not supported).
260-
- `Q̂=nothing` : new augmented model ``\mathbf{Q̂}`` covariance matrix.
261-
- `R̂=nothing` : new augmented model ``\mathbf{R̂}`` covariance matrix.
262+
- `Q̂=nothing` or *`Qhat`* : new augmented model ``\mathbf{Q̂}`` covariance matrix.
263+
- `R̂=nothing` or *`Rhat`* : new augmented model ``\mathbf{R̂}`` covariance matrix.
262264
263265
# Examples
264266
```jldoctest
@@ -283,8 +285,10 @@ julia> kf.model.A[], kf.Q̂[1, 1], kf.Q̂[2, 2]
283285
function setmodel!(
284286
estim::StateEstimator,
285287
model = estim.model;
286-
= nothing,
287-
= nothing
288+
Qhat = nothing,
289+
Rhat = nothing,
290+
= Qhat,
291+
= Rhat
288292
)
289293
uop_old = copy(estim.model.uop)
290294
yop_old = copy(estim.model.yop)

0 commit comments

Comments
 (0)