File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -115,8 +115,6 @@ def test_initial_response(self):
115
115
np .testing .assert_array_almost_equal (y_00 , youttrue , decimal = 4 )
116
116
np .testing .assert_array_almost_equal (y_11 , youttrue , decimal = 4 )
117
117
118
-
119
- @unittest .skip ("skipping test_initial_response_no_trim: known output dimension error" )
120
118
def test_initial_response_no_trim (self ):
121
119
# test MIMO system without trimming
122
120
t = np .linspace (0 , 1 , 10 )
@@ -126,7 +124,7 @@ def test_initial_response_no_trim(self):
126
124
sys = self .mimo_ss1
127
125
_t , yy = initial_response (sys , T = t , X0 = x0 )
128
126
np .testing .assert_array_almost_equal (
129
- yy , np .hstack ((youttrue , youttrue )),
127
+ yy , np .vstack ((youttrue , youttrue )),
130
128
decimal = 4 )
131
129
132
130
def test_forced_response (self ):
You can’t perform that action at this time.
0 commit comments