I'm revisiting some Julia code I worked with during early Covid (first half of 2020). In my code, I import ControlSystems.jl, and create a struct as:
struct MFD{T} <: LTISystem
N::Matrix{Poly{T}}
D::Matrix{Poly{T}}
...
end
My code doesn't work anymore. That is ok, but I'm just wondering whether LTISystem was part of ControlSystems.jl back then, and whether that type has been moved to some other package (or replaced with something else).