@@ -208,7 +208,6 @@ def testStep(self, siso):
208208 np .testing .assert_array_almost_equal (yout , youttrue , decimal = 4 )
209209 np .testing .assert_array_almost_equal (tout , t )
210210
211- @slycotonly
212211 def testStep_mimo (self , mimo ):
213212 """Test step for MIMO system"""
214213 sys = mimo .ss1
@@ -267,7 +266,6 @@ def testImpulse(self, siso):
267266 np .testing .assert_array_almost_equal (yout , youttrue , decimal = 4 )
268267 np .testing .assert_array_almost_equal (tout , t )
269268
270- @slycotonly
271269 def testImpulse_mimo (self , mimo ):
272270 """Test impulse() for MIMO system"""
273271 t = np .linspace (0 , 1 , 10 )
@@ -296,7 +294,6 @@ def testInitial(self, siso):
296294 np .testing .assert_array_almost_equal (yout , youttrue , decimal = 4 )
297295 np .testing .assert_array_almost_equal (tout , t )
298296
299- @slycotonly
300297 def testInitial_mimo (self , mimo ):
301298 """Test initial() for MIMO system"""
302299 t = np .linspace (0 , 1 , 10 )
@@ -333,7 +330,6 @@ def testLsim(self, siso):
333330 yout , _t , _xout = lsim (siso .ss1 , u , t , x0 )
334331 np .testing .assert_array_almost_equal (yout , youttrue , decimal = 4 )
335332
336- @slycotonly
337333 def testLsim_mimo (self , mimo ):
338334 """Test lsim() for MIMO system.
339335
@@ -582,7 +578,6 @@ def testSISOssdata(self, siso):
582578 for i in range (len (ssdata_1 )):
583579 np .testing .assert_array_almost_equal (ssdata_1 [i ], ssdata_2 [i ])
584580
585- @slycotonly
586581 def testMIMOssdata (self , mimo ):
587582 """Test ssdata() MIMO"""
588583 m = (mimo .ss1 .A , mimo .ss1 .B , mimo .ss1 .C , mimo .ss1 .D )
0 commit comments