@@ -1106,6 +1106,7 @@ def test_latex_repr_testsize(editsdefaults):
1106
1106
# the underdamped gpeak and fpeak are found from
1107
1107
# gpeak = 1/(2*zeta*(1-zeta**2)**0.5
1108
1108
# fpeak = wn*(1-2*zeta**2)**0.5
1109
+ @slycotonly
1109
1110
@pytest .mark .parametrize (
1110
1111
"name, sys, refgpeak, reffpeak" ,
1111
1112
[
@@ -1124,6 +1125,7 @@ def test_linfnorm_siso_continuoustime(name, sys, refgpeak, reffpeak):
1124
1125
1125
1126
1126
1127
# these are the continuous-time examples with some tweaks
1128
+ @slycotonly
1127
1129
@pytest .mark .parametrize (
1128
1130
"name, sys, refgpeak, reffpeak" ,
1129
1131
[
@@ -1146,6 +1148,7 @@ def test_linfnorm_siso_discretetime(name, sys, refgpeak, reffpeak):
1146
1148
np .testing .assert_allclose (fpeak , reffpeak )
1147
1149
1148
1150
1151
+ @slycotonly
1149
1152
@pytest .mark .parametrize ("name, sys, refgpeak, reffpeak" ,
1150
1153
linfnorm_mimo_testcases .continuous_time )
1151
1154
def test_linfnorm_mimo_continuoustime (name , sys , refgpeak , reffpeak ):
@@ -1154,6 +1157,7 @@ def test_linfnorm_mimo_continuoustime(name, sys, refgpeak, reffpeak):
1154
1157
np .testing .assert_allclose (fpeak , reffpeak )
1155
1158
1156
1159
1160
+ @slycotonly
1157
1161
@pytest .mark .parametrize ("name, sys, refgpeak, reffpeak" ,
1158
1162
linfnorm_mimo_testcases .discrete_time )
1159
1163
def test_linfnorm_mimo_discretetime (name , sys , refgpeak , reffpeak ):
@@ -1162,8 +1166,8 @@ def test_linfnorm_mimo_discretetime(name, sys, refgpeak, reffpeak):
1162
1166
np .testing .assert_allclose (fpeak , reffpeak )
1163
1167
1164
1168
1169
+ @slycotonly
1165
1170
def test_linfnorm_notimebase ():
1166
1171
g = ct .ss (- 0.1 ,1 ,1 ,0 ,dt = None )
1167
1172
with pytest .raises (ValueError ):
1168
1173
linfnorm (g )
1169
-
0 commit comments