Skip to content

Commit 8621ce9

Browse files
committed
fix test
1 parent 47c5a75 commit 8621ce9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_timeresp.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Test lsim for pure D system (no states) with matrix input
2-
sysDm = ss([], [], [], [2.0])
2+
sysDm = ss([2.0])
33
tDm = 0:0.1:1
44
uDm = fill(3.0, 1, length(tDm))
55
resDm = lsim(sysDm, uDm, tDm)
@@ -43,7 +43,7 @@ th = 1e-6
4343

4444

4545
# Test lsim for pure D system (no states)
46-
sysD = ss([], [], [], [2.0])
46+
sysD = ss([2.0])
4747
tD = 0:0.1:1
4848
uD(x, t) = [3.0]
4949
resD = lsim(sysD, uD, tD)

0 commit comments

Comments
 (0)