Skip to content

Commit 0a81ce3

Browse files
committed
manual: better UKF tuning
1 parent 4d084e8 commit 0a81ce3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/manual/nonlinmpc.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ savefig(ans, "plot1_NonLinMPC.svg"); nothing # hide
7878
An [`UnscentedKalmanFilter`](@ref) estimates the plant state :
7979

8080
```@example 1
81-
σQ=[0.1, 0.5]; σR=[0.5]; nint_u=[1]; σQint_u=[0.1]
82-
estim = UnscentedKalmanFilter(model; σQ, σR, nint_u, σQint_u)
81+
α=0.1; σQ=[0.1, 0.5]; σR=[0.5]; nint_u=[1]; σQint_u=[0.1]
82+
estim = UnscentedKalmanFilter(model; α, σQ, σR, nint_u, σQint_u)
8383
```
8484

8585
The vectors `σQ` and σR `σR` are the standard deviations of the process and sensor noises,

0 commit comments

Comments
 (0)