@@ -98,7 +98,9 @@ the result will be a discrete time system with the sample time of the latter
98
98
system. For continuous time systems, the :func: `sample_system ` function or
99
99
the :meth: `StateSpace.sample ` and :meth: `TransferFunction.sample ` methods
100
100
can be used to create a discrete time system from a continuous time system.
101
- See :ref: `utility-and-conversions `.
101
+ See :ref: `utility-and-conversions `. The default value of 'dt' can be changed by
102
+ changing the values of ``control.config.defaults['statesp.default_dt'] `` and
103
+ ``control.config.defaults['xferfcn.default_dt'] ``.
102
104
103
105
Conversion between representations
104
106
----------------------------------
@@ -220,9 +222,15 @@ Selected variables that can be configured, along with their default values:
220
222
* freqplot.feature_periphery_decade (1.0 ): How many decades to include in the
221
223
frequency range on both sides of features (poles, zeros).
222
224
223
- * statesp.use_numpy_matrix: set the return type for state space matrices to
225
+ * statesp.use_numpy_matrix ( True ) : set the return type for state space matrices to
224
226
`numpy.matrix` (verus numpy.ndarray)
225
227
228
+ * statesp.default_dt and xferfcn.default_dt (None ): set the default value of dt when
229
+ constructing new LTI systems
230
+
231
+ * statesp.remove_useless_states (True ): remove states that have no effect on the
232
+ input - output dynamics of the system
233
+
226
234
Additional parameter variables are documented in individual functions
227
235
228
236
Functions that can be used to set standard configurations:
@@ -234,3 +242,4 @@ Functions that can be used to set standard configurations:
234
242
use_fbs_defaults
235
243
use_matlab_defaults
236
244
use_numpy_matrix
245
+ use_legacy_defaults
0 commit comments