@@ -83,17 +83,17 @@ The timebase argument can be given when a system is constructed:
8383* dt = 0: continuous time system (default)
8484* dt > 0: discrete time system with sampling period 'dt'
8585* dt = True: discrete time with unspecified sampling period
86- * dt = None: no timebase specified
86+ * dt = None: no timebase specified
8787
8888Only the :class: `StateSpace `, :class: `TransferFunction `, and
8989:class: `InputOutputSystem ` classes allow explicit representation of
9090discrete time systems.
9191
92- Systems must have compatible timebases in order to be combined. A discrete time
93- system with unspecified sampling time (`dt = True `) can be combined with a system
92+ Systems must have compatible timebases in order to be combined. A discrete time
93+ system with unspecified sampling time (`dt = True `) can be combined with a system
9494having a specified sampling time; the result will be a discrete time system with the sample time of the latter
9595system. Similarly, a system with timebase `None ` can be combined with a system having a specified
96- timebase; the result will have the timebase of the latter system. For continuous
96+ timebase; the result will have the timebase of the latter system. For continuous
9797time systems, the :func: `sample_system ` function or the :meth: `StateSpace.sample ` and :meth: `TransferFunction.sample ` methods
9898can be used to create a discrete time system from a continuous time system.
9999See :ref: `utility-and-conversions `. The default value of 'dt' can be changed by
@@ -179,6 +179,10 @@ can be computed like this::
179179
180180 ft = D * U
181181
182+
183+ .. currentmodule :: control
184+ .. _package-configuration-parameters :
185+
182186Package configuration parameters
183187================================
184188
@@ -207,25 +211,25 @@ on standard configurations.
207211Selected variables that can be configured, along with their default values:
208212
209213 * bode.dB (False ): Bode plot magnitude plotted in dB (otherwise powers of 10 )
210-
214+
211215 * bode.deg (True ): Bode plot phase plotted in degrees (otherwise radians)
212-
216+
213217 * bode.Hz (False ): Bode plot frequency plotted in Hertz (otherwise rad/ sec)
214-
218+
215219 * bode.grid (True ): Include grids for magnitude and phase plots
216-
220+
217221 * freqplot.number_of_samples (None ): Number of frequency points in Bode plots
218-
222+
219223 * freqplot.feature_periphery_decade (1.0 ): How many decades to include in the
220224 frequency range on both sides of features (poles, zeros).
221-
225+
222226 * statesp.use_numpy_matrix (True ): set the return type for state space matrices to
223227 `numpy.matrix` (verus numpy.ndarray)
224228
225- * statesp.default_dt and xferfcn.default_dt (None ): set the default value of dt when
229+ * statesp.default_dt and xferfcn.default_dt (None ): set the default value of dt when
226230 constructing new LTI systems
227231
228- * statesp.remove_useless_states (True ): remove states that have no effect on the
232+ * statesp.remove_useless_states (True ): remove states that have no effect on the
229233 input - output dynamics of the system
230234
231235Additional parameter variables are documented in individual functions
0 commit comments