Skip to content

Commit 73e36ce

Browse files
committed
doc: debug jldoctest
1 parent 3de4919 commit 73e36ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/estimator/execute.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -375,12 +375,12 @@ augmented model is not verified (see Extended Help for more info).
375375
```jldoctest
376376
julia> kf = KalmanFilter(LinModel(ss(0.1, 0.5, 1, 0, 4.0)), σQ=[√4.0], σQint_ym=[√0.25]);
377377
378-
julia> kf.model.A[], kf.Q̂[1, 1], kf.Q̂[2, 2]
378+
julia> kf.model.A[], kf.cov.Q̂[1, 1], kf.cov.Q̂[2, 2]
379379
(0.1, 4.0, 0.25)
380380
381381
julia> setmodel!(kf, LinModel(ss(0.42, 0.5, 1, 0, 4.0)), Q̂=[1 0;0 0.5]);
382382
383-
julia> kf.model.A[], kf.Q̂[1, 1], kf.Q̂[2, 2]
383+
julia> kf.model.A[], kf.cov.Q̂[1, 1], kf.cov.Q̂[2, 2]
384384
(0.42, 1.0, 0.5)
385385
```
386386

0 commit comments

Comments
 (0)