We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
minreal
DelayLtiSystem
1 parent 14986d1 commit fb0b828Copy full SHA for fb0b828
src/model/linmodel.jl
@@ -221,7 +221,7 @@ Discretize with zero-order hold when `sys` is a continuous system with delays.
221
The delays must be multiples of the sample time `Ts`.
222
"""
223
function LinModel(sys::DelayLtiSystem, Ts::Real; kwargs...)
224
- sys_dis = minreal(c2d(sys, Ts, :zoh)) # c2d only supports :zoh for DelayLtiSystem
+ sys_dis = c2d(sys, Ts, :zoh) # c2d only supports :zoh for DelayLtiSystem
225
return LinModel(sys_dis, Ts; kwargs...)
226
end
227
0 commit comments