Skip to content

Releases: JuliaControl/ControlSystems.jl

v0.5.9

05 Apr 21:57
e9f166c
Compare
Choose a tag to compare
Update Project.toml

Plots 1 compat

v0.5.8

31 Mar 02:09
c5efbcb
Compare
Choose a tag to compare
  • Bugfixes and more customization for plots
  • Bump compat for Plots

v0.5.7

14 Mar 16:21
v0.5.7
bfadc8f
Compare
Choose a tag to compare

v0.5.7 (2020-03-14)

Diff since v0.5.6

Closed issues:

  • Bode plot has weird magnitude scale (#267)
  • Error printing type to REPL (#263)

Merged pull requests:

v0.5.6

21 Jan 19:22
v0.5.6
fcd927c
Compare
Choose a tag to compare

v0.5.6 (2020-01-21)

Diff since v0.5.5

Closed issues:

Merged pull requests:

v0.5.5

05 Jan 21:45
v0.5.5
bf65293
Compare
Choose a tag to compare

v0.5.5 (2020-01-05)

Diff since v0.5.4

Merged pull requests:

v0.5.4

13 Nov 01:47
v0.5.4
246ab0f
Compare
Choose a tag to compare

v0.5.4 (2019-11-13)

Diff since v0.5.3

Closed issues:

  • Is that a bug? PID and delay system. (#232)
  • showterm2 function out of date (#229)
  • pidplots returns nothing unless :controller in args (#226)
  • Fractional control support (#225)
  • Stack overflow for inverse of delayed system (#217)

Merged pull requests:

AbstractStatespace

22 May 07:21
6312567
Compare
Choose a tag to compare

See Readme for news

Bugfixes

07 Mar 09:48
f54a87e
Compare
Choose a tag to compare
v0.5.1

Add news about identification to readme (#190)

Julia 1 compatible version

04 Oct 07:52
Compare
Choose a tag to compare
v0.5.0

updated plot limits, travis and documentation plots

Major revision with parametric types

03 Sep 11:27
585c4de
Compare
Choose a tag to compare

Some important changes:

  • LTISystem types are now more generic and can hold matrices/vectors of arbitrary type
  • Continuous time systems are simulated with continuous time solvers from OrdinaryDiffEq.jl
  • Freqresp now returns frequencies in the first dimension.
  • Breaking: lsim(sys, u::Function) syntax has changed from u(t,x) to u(x,t) to be consistent with OrdinaryDiffEq
  • Breaking: feedback(P,C) no longer returns feedback(P*C). The behavior is changed to feedback(P1, P2) = P1/(1+P1*P2).
  • Type Simulator provides lower level interface to continuous time simulation.