Major revision with parametric types
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 fromu(t,x)
tou(x,t)
to be consistent withOrdinaryDiffEq
- Breaking:
feedback(P,C)
no longer returnsfeedback(P*C)
. The behavior is changed tofeedback(P1, P2) = P1/(1+P1*P2)
. - Type
Simulator
provides lower level interface to continuous time simulation.