Skip to content

Commit 8848b06

Browse files
committed
Fix CI
1 parent 8abd6d7 commit 8848b06

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Blocks/continuous.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -626,10 +626,10 @@ See also [`StateSpace`](@ref) which handles MIMO systems, as well as [ControlSys
626626
if nx == 0
627627
eqs = [y ~ d * u]
628628
else
629-
eqs = [D(x_scaled[1]) ~ (-a[2:na]'x_scaled + a_end * u) / a[1]
630-
D.(x_scaled[2:nx]) .~ x_scaled[1:(nx - 1)]
631-
y ~ ((bb[2:na] - d * a[2:na])'x_scaled) / a_end + d * u
632-
x .~ x_scaled ./ a_end]
629+
eqs = Equation[D(x_scaled[1]) ~ (-a[2:na]'x_scaled + a_end * u) / a[1]
630+
D.(x_scaled[2:nx]) .~ x_scaled[1:(nx - 1)]
631+
y ~ ((bb[2:na] - d * a[2:na])'x_scaled) / a_end + d * u
632+
x .~ x_scaled ./ a_end]
633633
end
634634
push!(eqs, input.u ~ u)
635635
push!(eqs, output.u ~ y)

0 commit comments

Comments
 (0)