@@ -109,9 +109,9 @@ def lyap(A, Q, C=None, E=None, method=None):
109109 method = _slycot_or_scipy (method )
110110 if method == 'slycot' :
111111 if sb03md is None :
112- raise ControlSlycot ("Can't find Slycot module 'sb03md'" )
112+ raise ControlSlycot ("Can't find slycot module 'sb03md'" )
113113 if sb04md is None :
114- raise ControlSlycot ("Can't find Slycot module 'sb04md'" )
114+ raise ControlSlycot ("Can't find slycot module 'sb04md'" )
115115
116116 # Reshape input arrays
117117 A = np .array (A , ndmin = 2 )
@@ -171,7 +171,7 @@ def lyap(A, Q, C=None, E=None, method=None):
171171 from slycot import sg03ad
172172
173173 except ImportError :
174- raise ControlSlycot ("Can't find Slycot module 'sg03ad'" )
174+ raise ControlSlycot ("Can't find slycot module 'sg03ad'" )
175175
176176 # Solve the generalized Lyapunov equation by calling Slycot
177177 # function sg03ad
@@ -237,11 +237,11 @@ def dlyap(A, Q, C=None, E=None, method=None):
237237 if method == 'slycot' :
238238 # Make sure we have access to the right slycot routines
239239 if sb03md is None :
240- raise ControlSlycot ("Can't find Slycot module 'sb03md'" )
240+ raise ControlSlycot ("Can't find slycot module 'sb03md'" )
241241 if sb04qd is None :
242- raise ControlSlycot ("Can't find Slycot module 'sb04qd'" )
242+ raise ControlSlycot ("Can't find slycot module 'sb04qd'" )
243243 if sg03ad is None :
244- raise ControlSlycot ("Can't find Slycot module 'sg03ad'" )
244+ raise ControlSlycot ("Can't find slycot module 'sg03ad'" )
245245
246246 # Reshape input arrays
247247 A = np .array (A , ndmin = 2 )
@@ -404,12 +404,12 @@ def care(A, B, Q, R=None, S=None, E=None, stabilizing=True, method=None,
404404 try :
405405 from slycot import sb02md
406406 except ImportError :
407- raise ControlSlycot ("Can't find Slycot module 'sb02md'" )
407+ raise ControlSlycot ("Can't find slycot module 'sb02md'" )
408408
409409 try :
410410 from slycot import sb02mt
411411 except ImportError :
412- raise ControlSlycot ("Can't find Slycot module 'sb02mt'" )
412+ raise ControlSlycot ("Can't find slycot module 'sb02mt'" )
413413
414414 # Solve the standard algebraic Riccati equation by calling Slycot
415415 # functions sb02mt and sb02md
@@ -450,7 +450,7 @@ def care(A, B, Q, R=None, S=None, E=None, stabilizing=True, method=None,
450450 try :
451451 from slycot import sg02ad
452452 except ImportError :
453- raise ControlSlycot ("Can't find Slycot module ' sg02ad' " )
453+ raise ControlSlycot ("Can't find slycot module sg02ad" )
454454
455455 # Solve the generalized algebraic Riccati equation by calling the
456456 # Slycot function sg02ad
@@ -569,7 +569,7 @@ def dare(A, B, Q, R, S=None, E=None, stabilizing=True, method=None,
569569 try :
570570 from slycot import sg02ad
571571 except ImportError :
572- raise ControlSlycot ("Can't find Slycot module ' sg02ad' " )
572+ raise ControlSlycot ("Can't find slycot module sg02ad" )
573573
574574 # Initialize optional matrices
575575 S = np .zeros ((n , m )) if S is None else np .array (S , ndmin = 2 )
0 commit comments