@@ -72,9 +72,11 @@ class for a set of subclasses that are used to implement specific
7272 states : int, list of str, or None
7373 Description of the system states. Same format as `inputs`.
7474 dt : None, True or float, optional
75- System timebase. None (default) indicates continuous time, True
76- indicates discrete time with undefined sampling time, positive number
77- is discrete time with specified sampling time.
75+ System timebase. 0 (default) indicates continuous
76+ time, True indicates discrete time with unspecified sampling
77+ time, positive number is discrete time with specified
78+ sampling time, None indicates unspecified timebase (either
79+ continuous or discrete time).
7880 params : dict, optional
7981 Parameter values for the systems. Passed to the evaluation functions
8082 for the system as default values, overriding internal defaults.
@@ -90,9 +92,11 @@ class for a set of subclasses that are used to implement specific
9092 Dictionary of signal names for the inputs, outputs and states and the
9193 index of the corresponding array
9294 dt : None, True or float
93- System timebase. None (default) indicates continuous time, True
94- indicates discrete time with undefined sampling time, positive number
95- is discrete time with specified sampling time.
95+ System timebase. 0 (default) indicates continuous
96+ time, True indicates discrete time with unspecified sampling
97+ time, positive number is discrete time with specified
98+ sampling time, None indicates unspecified timebase (either
99+ continuous or discrete time).
96100 params : dict, optional
97101 Parameter values for the systems. Passed to the evaluation functions
98102 for the system as default values, overriding internal defaults.
@@ -146,10 +150,11 @@ def __init__(self, inputs=None, outputs=None, states=None, params={},
146150 states : int, list of str, or None
147151 Description of the system states. Same format as `inputs`.
148152 dt : None, True or float, optional
149- System timebase. None (default) indicates continuous
150- time, True indicates discrete time with undefined sampling
153+ System timebase. 0 (default) indicates continuous
154+ time, True indicates discrete time with unspecified sampling
151155 time, positive number is discrete time with specified
152- sampling time.
156+ sampling time, None indicates unspecified timebase (either
157+ continuous or discrete time).
153158 params : dict, optional
154159 Parameter values for the systems. Passed to the evaluation
155160 functions for the system as default values, overriding internal
@@ -584,10 +589,11 @@ def __init__(self, linsys, inputs=None, outputs=None, states=None,
584589 states : int, list of str, or None, optional
585590 Description of the system states. Same format as `inputs`.
586591 dt : None, True or float, optional
587- System timebase. None (default) indicates continuous
588- time, True indicates discrete time with undefined sampling
592+ System timebase. 0 (default) indicates continuous
593+ time, True indicates discrete time with unspecified sampling
589594 time, positive number is discrete time with specified
590- sampling time.
595+ sampling time, None indicates unspecified timebase (either
596+ continuous or discrete time).
591597 params : dict, optional
592598 Parameter values for the systems. Passed to the evaluation
593599 functions for the system as default values, overriding internal
@@ -707,10 +713,10 @@ def __init__(self, updfcn, outfcn=None, inputs=None, outputs=None,
707713 operating in continuous or discrete time. It can have the
708714 following values:
709715
710- * dt = None No timebase specified
711- * dt = 0 Continuous time system
712- * dt > 0 Discrete time system with sampling time dt
713- * dt = True Discrete time with unspecified sampling time
716+ * dt = 0: continuous time system (default)
717+ * dt > 0: discrete time system with sampling period 'dt'
718+ * dt = True: discrete time with unspecified sampling period
719+ * dt = None: no timebase specified
714720
715721 name : string, optional
716722 System name (used for specifying signals). If unspecified, a generic
@@ -877,10 +883,10 @@ def __init__(self, syslist, connections=[], inplist=[], outlist=[],
877883 operating in continuous or discrete time. It can have the
878884 following values:
879885
880- * dt = None No timebase specified
881- * dt = 0 Continuous time system
882- * dt > 0 Discrete time system with sampling time dt
883- * dt = True Discrete time with unspecified sampling time
886+ * dt = 0: continuous time system (default)
887+ * dt > 0: discrete time system with sampling period 'dt'
888+ * dt = True: discrete time with unspecified sampling period
889+ * dt = None: no timebase specified
884890
885891 name : string, optional
886892 System name (used for specifying signals). If unspecified, a generic
0 commit comments