Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
franckgaga committed Jun 14, 2023
2 parents c82eb54 + 56df390 commit 9921adb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/src/manual/linmpc.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# [Manual: Linear Design](@id my_manual)
# [Manual: Linear Design](@id man_lin)

## Linear Model

Expand Down
2 changes: 1 addition & 1 deletion docs/src/manual/nonlinmpc.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Manual: Nonlinear Design
# [Manual: Nonlinear Design](@id man_nonlin)

## Nonlinear Model

Expand Down
2 changes: 1 addition & 1 deletion docs/src/public/state_estim.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ the controller computations, without introducing any additional delays. Moreover
[`moveinput!`](@ref) method of the predictive controllers does not automatically update the
estimates with [`updatestate!`](@ref). This allows applying the calculated inputs on the
real plant before starting the potentially expensive estimator computations (see
[Manual](@ref my_manual) for examples).
[Manual](@ref man_lin) for examples).

!!! info
All the estimators support measured ``\mathbf{y^m}`` and unmeasured ``\mathbf{y^u}``
Expand Down
2 changes: 1 addition & 1 deletion src/model/linmodel.jl
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ with the state ``\mathbf{x}`` and output ``\mathbf{y}`` vectors. The ``\mathbf{z
comprises the manipulated inputs ``\mathbf{u}`` and measured disturbances ``\mathbf{d}``,
in any order. `i_u` provides the indices of ``\mathbf{z}`` that are manipulated, and `i_d`,
the measured disturbances. See Extended Help if `sys` is continuous-time, or discrete-time
and `Ts ≠ sys.Ts`.
with `Ts ≠ sys.Ts`.
See also [`ss`](https://juliacontrol.github.io/ControlSystems.jl/stable/lib/constructors/#ControlSystemsBase.ss),
[`tf`](https://juliacontrol.github.io/ControlSystems.jl/stable/lib/constructors/#ControlSystemsBase.tf).
Expand Down
2 changes: 1 addition & 1 deletion src/model/nonlinmodel.jl
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ manipulated inputs, states, outputs and measured disturbances.
Replace the `d` argument with `_` if `nd = 0` (see Examples below).
Nonlinear continuous-time state-space functions are not supported for now. In such a case,
manually call a differential equation solver in the `f` function (e.g.: Euler method).
manually call a differential equation solver in `f` (see [Manual](@ref man_nonlin)).
!!! warning
`f` and `h` must be pure Julia functions to use the model in [`NonLinMPC`](@ref).
Expand Down

0 comments on commit 9921adb

Please sign in to comment.