Skip to content

Commit b3c8b0f

Browse files
authored
Merge pull request #220 from JuliaControl/doc_correction
doc: minor correction
2 parents 49e7c92 + 365b7f8 commit b3c8b0f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ preferred-citation:
1717
given-names: "Fredrik"
1818
title: "ModelPredictiveControl.jl: advanced process control made easy in Julia"
1919
year: 2024
20-
doi: "10.1007/978-3-030-68928-5"
20+
doi: "10.48550/arXiv.2411.09764"
2121
url: "https://arxiv.org/abs/2411.09764"

docs/src/manual/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ with this package in the current working directory, write this in the REPL:
1515
using Pkg; Pkg.generate("MPCproject"); Pkg.activate("."); Pkg.add("ModelPredictiveControl")
1616
```
1717

18-
Note that that the construction of linear models typically requires `ss` or `tf` functions,
18+
Note that the construction of linear models typically requires `ss` or `tf` functions,
1919
it is thus advised to load the package with:
2020

2121
```julia

src/controller/explicitmpc.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,10 @@ See [`LinMPC`](@ref) for the variable definitions. This controller does not supp
106106
constraints but the computational costs are extremely low (array division), therefore
107107
suitable for applications that require small sample times. The keyword arguments are
108108
identical to [`LinMPC`](@ref), except for `Cwt`, `transcription` and `optim`, which are not
109-
supported. This controller uses a [`SingleShooting`](@ref) transcription method.
109+
supported. It uses a [`SingleShooting`](@ref) transcription method and is allocation-free.
110110
111111
This method uses the default state estimator, a [`SteadyKalmanFilter`](@ref) with default
112-
arguments. This controller is allocation-free.
112+
arguments.
113113
114114
# Examples
115115
```jldoctest

0 commit comments

Comments
 (0)