Skip to content

Commit 6312567

Browse files
authored
Merge pull request #215 from JuliaControl/readme
Small updates to the readme
2 parents d300320 + 6c6555d commit 6312567

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ Pkg.add("ControlSystems")
1717
```
1818

1919
## News
20+
### 2019-05-22
21+
New state-space type `HeteroStateSpace` that accepts matrices of heterogeneous types: [example using `StaticArrays`](https://juliacontrol.github.io/ControlSystems.jl/latest/man/creating_systems/#Creating-State-Space-Systems-1).
2022
### 2019-01-31
2123
System identification using [ControlSystemIdentification.jl](https://github.com/baggepinnen/ControlSystemIdentification.jl) is now available. The [readme](https://github.com/baggepinnen/ControlSystemIdentification.jl) together with a series of notebooks serve as documentation.
2224
- [State-space identification](https://github.com/JuliaControl/ControlExamples.jl/blob/master/identification_statespace.ipynb)
@@ -35,7 +37,7 @@ ss(1.)
3537
ss(1im)
3638
ss(ForwardDiff.Dual(1.))
3739
ss(GPUArray([1]))
38-
ss(SparseMatrix([1])
40+
ss(SparseMatrix([1]))
3941
```
4042
Similar for `tf,zpk` etc.
4143
- Continuous time systems are simulated with continuous time solvers from `OrdinaryDiffEq.jl`
@@ -50,15 +52,15 @@ Similar for `tf,zpk` etc.
5052

5153
All functions have docstrings, which can be viewed from the REPL, using for example `?tf `.
5254

53-
A documentation website under developement is available at [http://juliacontrol.github.io/ControlSystems.jl/latest/](http://juliacontrol.github.io/ControlSystems.jl/latest/).
55+
A documentation website is available at [http://juliacontrol.github.io/ControlSystems.jl/latest/](http://juliacontrol.github.io/ControlSystems.jl/latest/).
5456

5557
Some of the available commands are:
5658
##### Constructing systems
5759
ss, tf, zpk, ss2tf
5860
##### Analysis
5961
pole, tzero, norm, norminf, ctrb, obsv, gangoffour, margin, markovparam, damp, dampreport, zpkdata, dcgain, covar, gram, sigma, sisomargin
6062
##### Synthesis
61-
care, dare, dlyap, lqr, dlqr, place, leadlink, laglink, leadlinkat, rstd, rstc, dab
63+
care, dare, dlyap, lqr, dlqr, place, leadlink, laglink, leadlinkat, rstd, rstc, dab, balreal, baltrunc
6264
###### PID design
6365
pid, stabregionPID, loopshapingPI, pidplots
6466
##### Time and Frequency response

0 commit comments

Comments
 (0)