-
Notifications
You must be signed in to change notification settings - Fork 89
Closed
Description
julia> using ControlSystems
julia> G1 = tf([0.8], [1,0,0.25], 1)
TransferFunction{Discrete{Int64}, ControlSystems.SisoRational{Float64}}
0.8
-------------
1.0z^2 + 0.25
Sample Time: 1 (seconds)
Discrete-time transfer function model
julia> G2 = tf([0.8, 0], [1,0,0.25], 1)
TransferFunction{Discrete{Int64}, ControlSystems.SisoRational{Float64}}
0.8z
-------------
1.0z^2 + 0.25
Sample Time: 1 (seconds)
Discrete-time transfer function model
julia> isapprox(G1, G2)
truenote the different orders of the numerators
ref baggepinnen/ControlSystemIdentification.jl#75 (comment)
Metadata
Metadata
Assignees
Labels
No labels