@@ -208,7 +208,6 @@ def testStep(self, siso):
208
208
np .testing .assert_array_almost_equal (yout , youttrue , decimal = 4 )
209
209
np .testing .assert_array_almost_equal (tout , t )
210
210
211
- @slycotonly
212
211
def testStep_mimo (self , mimo ):
213
212
"""Test step for MIMO system"""
214
213
sys = mimo .ss1
@@ -267,7 +266,6 @@ def testImpulse(self, siso):
267
266
np .testing .assert_array_almost_equal (yout , youttrue , decimal = 4 )
268
267
np .testing .assert_array_almost_equal (tout , t )
269
268
270
- @slycotonly
271
269
def testImpulse_mimo (self , mimo ):
272
270
"""Test impulse() for MIMO system"""
273
271
t = np .linspace (0 , 1 , 10 )
@@ -296,7 +294,6 @@ def testInitial(self, siso):
296
294
np .testing .assert_array_almost_equal (yout , youttrue , decimal = 4 )
297
295
np .testing .assert_array_almost_equal (tout , t )
298
296
299
- @slycotonly
300
297
def testInitial_mimo (self , mimo ):
301
298
"""Test initial() for MIMO system"""
302
299
t = np .linspace (0 , 1 , 10 )
@@ -333,7 +330,6 @@ def testLsim(self, siso):
333
330
yout , _t , _xout = lsim (siso .ss1 , u , t , x0 )
334
331
np .testing .assert_array_almost_equal (yout , youttrue , decimal = 4 )
335
332
336
- @slycotonly
337
333
def testLsim_mimo (self , mimo ):
338
334
"""Test lsim() for MIMO system.
339
335
@@ -582,7 +578,6 @@ def testSISOssdata(self, siso):
582
578
for i in range (len (ssdata_1 )):
583
579
np .testing .assert_array_almost_equal (ssdata_1 [i ], ssdata_2 [i ])
584
580
585
- @slycotonly
586
581
def testMIMOssdata (self , mimo ):
587
582
"""Test ssdata() MIMO"""
588
583
m = (mimo .ss1 .A , mimo .ss1 .B , mimo .ss1 .C , mimo .ss1 .D )
0 commit comments