@@ -358,7 +358,7 @@ def eval(self, omega, squeeze=None):
358358 squeeze : bool, optional (default=True)
359359 If True and the system is single-input single-output (SISO),
360360 return a 1D array rather than a 3D array. Default value (True)
361- set by config.defaults['control.squeeze '].
361+ set by config.defaults['control.squeeze_frequency_response '].
362362
363363 Returns
364364 -------
@@ -369,7 +369,7 @@ def eval(self, omega, squeeze=None):
369369 """
370370 # Set value of squeeze argument if not set
371371 if squeeze is None :
372- squeeze = config .defaults ['control.squeeze ' ]
372+ squeeze = config .defaults ['control.squeeze_frequency_response ' ]
373373
374374 omega_array = np .array (omega , ndmin = 1 ) # array-like version of omega
375375 if any (omega_array .imag > 0 ):
@@ -411,7 +411,7 @@ def __call__(self, s, squeeze=None):
411411 squeeze : bool, optional (default=True)
412412 If True and the system is single-input single-output (SISO),
413413 return a 1D array rather than a 3D array. Default value (True)
414- set by config.defaults['control.squeeze '].
414+ set by config.defaults['control.squeeze_frequency_response '].
415415
416416 Returns
417417 -------
@@ -429,7 +429,7 @@ def __call__(self, s, squeeze=None):
429429 """
430430 # Set value of squeeze argument if not set
431431 if squeeze is None :
432- squeeze = config .defaults ['control.squeeze ' ]
432+ squeeze = config .defaults ['control.squeeze_frequency_response ' ]
433433
434434 if any (abs (np .array (s , ndmin = 1 ).real ) > 0 ):
435435 raise ValueError ("__call__: FRD systems can only accept "
0 commit comments