Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
YingboMa committed Feb 22, 2024
1 parent 8abd6d7 commit 3ff74ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Blocks/continuous.jl
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ See also [`StateSpace`](@ref) which handles MIMO systems, as well as [ControlSys
if nx == 0
eqs = [y ~ d * u]
else
eqs = [D(x_scaled[1]) ~ (-a[2:na]'x_scaled + a_end * u) / a[1]
eqs = Equation[D(x_scaled[1]) ~ (-a[2:na]'x_scaled + a_end * u) / a[1]

Check warning on line 629 in src/Blocks/continuous.jl

View check run for this annotation

Codecov / codecov/patch

src/Blocks/continuous.jl#L629

Added line #L629 was not covered by tests
D.(x_scaled[2:nx]) .~ x_scaled[1:(nx - 1)]
y ~ ((bb[2:na] - d * a[2:na])'x_scaled) / a_end + d * u
x .~ x_scaled ./ a_end]
Expand Down

0 comments on commit 3ff74ef

Please sign in to comment.