Skip to content

Commit

Permalink
debug : input setpoint ru now works for LinModel
Browse files Browse the repository at this point in the history
  • Loading branch information
franckgaga committed Jun 22, 2023
1 parent e26ddad commit 999aa11
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
7 changes: 4 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ModelPredictiveControl"
uuid = "61f9bdb8-6ae4-484a-811f-bbf86720c31c"
authors = ["Francis Gagnon"]
version = "0.5.7"
version = "0.5.8"

[deps]
ControlSystemsBase = "aaaaaaaa-a6ca-5380-bf3e-84a91bcd477e"
Expand All @@ -25,8 +25,9 @@ RecipesBase = "1"
julia = "1.6"

[extras]
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"

[targets]
test = ["Test", "Documenter"]
test = ["Test", "Documenter", "Plots"]
3 changes: 3 additions & 0 deletions docs/src/public/generic_func.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
Pages = ["generic_func.md"]
```

This page contains the documentation of functions that are generic to [`SimModel`](@ref),
[`StateEstimator`](@ref) and [`PredictiveController`](@ref) types.

## Evaluate Output y

```@docs
Expand Down
2 changes: 1 addition & 1 deletion src/plot_sim.jl
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ julia> estim = KalmanFilter(model, σR=[0.5], σQ=[0.25], σQ_int=[0.01], σP0_i
julia> res = sim!(estim, 50, [0], y_noise=[0.5], x_noise=[0.25], x0=[-10], x̂0=[0, 0]);
julia> using Plots; plot(res, plotŷ=true, plotu=false, plotx=true, plotx̂=true)
julia> using Plots; plot(res, plotŷ=true, plotu=false, plotxwithx̂=true)
```
"""
Expand Down

2 comments on commit 999aa11

@franckgaga
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/86080

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.5.8 -m "<description of version>" 999aa11cbc9620b0ff8965026baa647e2785bc72
git push origin v0.5.8

Please sign in to comment.