Skip to content

Commit 055c150

Browse files
committed
doc: correct bound in MHE manual example
1 parent e0c4dd3 commit 055c150

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/src/manual/linmpc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ For the CSTR, we will bound the innovation term ``\mathbf{y}(k) - \mathbf{ŷ}(k
201201
estim = MovingHorizonEstimator(model, He=10, nint_u=[1, 1], σQint_u = [1, 2])
202202
estim = setconstraint!(estim, v̂min=[-1, -0.5], v̂max=[+1, +0.5])
203203
mpc_mhe = LinMPC(estim, Hp=10, Hc=2, Mwt=[1, 1], Nwt=[0.1, 0.1])
204-
mpc_mhe = setconstraint!(mpc_mhe, ymin=[45, -Inf])
204+
mpc_mhe = setconstraint!(mpc_mhe, ymin=[48, -Inf])
205205
```
206206

207207
The rejection is indeed improved:

0 commit comments

Comments
 (0)