Skip to content

Commit 3ff74ef

Browse files
committed
Fix CI
1 parent 8abd6d7 commit 3ff74ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Blocks/continuous.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,7 @@ 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]
629+
eqs = Equation[D(x_scaled[1]) ~ (-a[2:na]'x_scaled + a_end * u) / a[1]
630630
D.(x_scaled[2:nx]) .~ x_scaled[1:(nx - 1)]
631631
y ~ ((bb[2:na] - d * a[2:na])'x_scaled) / a_end + d * u
632632
x .~ x_scaled ./ a_end]

0 commit comments

Comments
 (0)