@@ -53,7 +53,7 @@ def series(*sys, **kwargs):
5353 '<subsys_name>.<state_name>' for interconnected nonlinear systems.
5454 name : string, optional
5555 System name (used for specifying signals). If unspecified, a generic
56- name < sys[id]> is generated with a unique integer id.
56+ name ' sys[id]' is generated with a unique integer id.
5757
5858 Raises
5959 ------
@@ -124,7 +124,7 @@ def parallel(*sys, **kwargs):
124124 '<subsys_name>.<state_name>' for interconnected nonlinear systems.
125125 name : string, optional
126126 System name (used for specifying signals). If unspecified, a generic
127- name < sys[id]> is generated with a unique integer id.
127+ name ' sys[id]' is generated with a unique integer id.
128128
129129 Raises
130130 ------
@@ -139,7 +139,7 @@ def parallel(*sys, **kwargs):
139139 Notes
140140 -----
141141 This function is a wrapper for the __add__ function in the
142- StateSpace and TransferFunction classes. The output type is usually
142+ ` StateSpace` and ` TransferFunction` classes. The output type is usually
143143 the type of `sys1`. If `sys1` is a scalar, then the output type is
144144 the type of `sys2`.
145145
@@ -168,8 +168,7 @@ def parallel(*sys, **kwargs):
168168 return sys
169169
170170def negate (sys , ** kwargs ):
171- """
172- Return the negative of a system.
171+ """Return the negative of a system.
173172
174173 Parameters
175174 ----------
@@ -193,16 +192,17 @@ def negate(sys, **kwargs):
193192 '<subsys_name>.<state_name>' for interconnected nonlinear systems.
194193 name : string, optional
195194 System name (used for specifying signals). If unspecified, a generic
196- name < sys[id]> is generated with a unique integer id.
195+ name ' sys[id]' is generated with a unique integer id.
197196
198197 See Also
199198 --------
200199 append, feedback, interconnect, parallel, series
201200
202201 Notes
203202 -----
204- This function is a wrapper for the __neg__ function in the StateSpace and
205- TransferFunction classes. The output type is the same as the input type.
203+ This function is a wrapper for the __neg__ function in the `StateSpace`
204+ and `TransferFunction` classes. The output type is the same as the
205+ input type.
206206
207207 Examples
208208 --------
@@ -248,16 +248,16 @@ def feedback(sys1, sys2=1, sign=-1, **kwargs):
248248 '<subsys_name>.<state_name>' for interconnected nonlinear systems.
249249 name : string, optional
250250 System name (used for specifying signals). If unspecified, a generic
251- name < sys[id]> is generated with a unique integer id.
251+ name ' sys[id]' is generated with a unique integer id.
252252
253253 Raises
254254 ------
255255 ValueError
256- if `sys1` does not have as many inputs as `sys2` has outputs, or if
257- `sys2` does not have as many inputs as `sys1` has outputs
256+ If `sys1` does not have as many inputs as `sys2` has outputs, or if
257+ `sys2` does not have as many inputs as `sys1` has outputs.
258258 NotImplementedError
259- if an attempt is made to perform a feedback on a MIMO TransferFunction
260- object
259+ If an attempt is made to perform a feedback on a MIMO ` TransferFunction`
260+ object.
261261
262262 See Also
263263 --------
@@ -341,7 +341,7 @@ def append(*sys, **kwargs):
341341 '<subsys_name>.<state_name>' for interconnected nonlinear systems.
342342 name : string, optional
343343 System name (used for specifying signals). If unspecified, a generic
344- name < sys[id]> is generated with a unique integer id.
344+ name ' sys[id]' is generated with a unique integer id.
345345
346346 See Also
347347 --------
@@ -472,16 +472,16 @@ def combine_tf(tf_array, **kwargs):
472472
473473 Parameters
474474 ----------
475- tf_array : list of list of TransferFunction or array_like
475+ tf_array : list of list of ` TransferFunction` or array_like
476476 Transfer matrix represented as a two-dimensional array or
477- list-of-lists containing TransferFunction objects. The
477+ list-of-lists containing ` TransferFunction` objects. The
478478 `TransferFunction` objects can have multiple outputs and inputs, as
479479 long as the dimensions are compatible.
480480
481481 Returns
482482 -------
483- TransferFunction
484- Transfer matrix represented as a single MIMO TransferFunction object.
483+ ` TransferFunction`
484+ Transfer matrix represented as a single MIMO ` TransferFunction` object.
485485
486486 Other Parameters
487487 ----------------
@@ -491,7 +491,7 @@ def combine_tf(tf_array, **kwargs):
491491 or 'y'). See `InputOutputSystem` for more information.
492492 name : string, optional
493493 System name (used for specifying signals). If unspecified, a generic
494- name < sys[id]> is generated with a unique integer id.
494+ name ' sys[id]' is generated with a unique integer id.
495495
496496 Raises
497497 ------
@@ -603,7 +603,7 @@ def split_tf(transfer_function):
603603
604604 Parameters
605605 ----------
606- transfer_function : TransferFunction
606+ transfer_function : ` TransferFunction`
607607 MIMO transfer function to split.
608608
609609 Returns
@@ -658,11 +658,11 @@ def split_tf(transfer_function):
658658 return np .array (tf_split_lst , dtype = object )
659659
660660def _ensure_tf (arraylike_or_tf , dt = None ):
661- """Convert an array-like to a transfer function.
661+ """Convert an array_like to a transfer function.
662662
663663 Parameters
664664 ----------
665- arraylike_or_tf : TransferFunction or array_like
665+ arraylike_or_tf : ` TransferFunction` or array_like
666666 Array-like or transfer function.
667667 dt : None, True or float, optional
668668 System timebase. 0 (default) indicates continuous
@@ -673,7 +673,7 @@ def _ensure_tf(arraylike_or_tf, dt=None):
673673
674674 Returns
675675 -------
676- TransferFunction
676+ ` TransferFunction`
677677 Transfer function.
678678
679679 Raises
@@ -707,7 +707,7 @@ def _ensure_tf(arraylike_or_tf, dt=None):
707707 )
708708 except TypeError :
709709 raise ValueError (
710- "`arraylike_or_tf` must only contain array-likes or transfer "
710+ "`arraylike_or_tf` must only contain array_likes or transfer "
711711 "functions."
712712 )
713713 return tfn
0 commit comments