@@ -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 --------
@@ -334,7 +334,7 @@ def append(*sys, **kwargs):
334334 '<subsys_name>.<state_name>' for interconnected nonlinear systems.
335335 name : string, optional
336336 System name (used for specifying signals). If unspecified, a generic
337- name < sys[id]> is generated with a unique integer id.
337+ name ' sys[id]' is generated with a unique integer id.
338338
339339 Returns
340340 -------
@@ -471,16 +471,16 @@ def combine_tf(tf_array, **kwargs):
471471
472472 Parameters
473473 ----------
474- tf_array : list of list of TransferFunction or array_like
474+ tf_array : list of list of ` TransferFunction` or array_like
475475 Transfer matrix represented as a two-dimensional array or
476- list-of-lists containing TransferFunction objects. The
476+ list-of-lists containing ` TransferFunction` objects. The
477477 `TransferFunction` objects can have multiple outputs and inputs, as
478478 long as the dimensions are compatible.
479479
480480 Returns
481481 -------
482- TransferFunction
483- Transfer matrix represented as a single MIMO TransferFunction object.
482+ ` TransferFunction`
483+ Transfer matrix represented as a single MIMO ` TransferFunction` object.
484484
485485 Other Parameters
486486 ----------------
@@ -490,7 +490,7 @@ def combine_tf(tf_array, **kwargs):
490490 or 'y'). See `InputOutputSystem` for more information.
491491 name : string, optional
492492 System name (used for specifying signals). If unspecified, a generic
493- name < sys[id]> is generated with a unique integer id.
493+ name ' sys[id]' is generated with a unique integer id.
494494
495495 Raises
496496 ------
@@ -602,7 +602,7 @@ def split_tf(transfer_function):
602602
603603 Parameters
604604 ----------
605- transfer_function : TransferFunction
605+ transfer_function : ` TransferFunction`
606606 MIMO transfer function to split.
607607
608608 Returns
@@ -657,11 +657,11 @@ def split_tf(transfer_function):
657657 return np .array (tf_split_lst , dtype = object )
658658
659659def _ensure_tf (arraylike_or_tf , dt = None ):
660- """Convert an array-like to a transfer function.
660+ """Convert an array_like to a transfer function.
661661
662662 Parameters
663663 ----------
664- arraylike_or_tf : TransferFunction or array_like
664+ arraylike_or_tf : ` TransferFunction` or array_like
665665 Array-like or transfer function.
666666 dt : None, True or float, optional
667667 System timebase. 0 (default) indicates continuous
@@ -672,7 +672,7 @@ def _ensure_tf(arraylike_or_tf, dt=None):
672672
673673 Returns
674674 -------
675- TransferFunction
675+ ` TransferFunction`
676676 Transfer function.
677677
678678 Raises
@@ -706,7 +706,7 @@ def _ensure_tf(arraylike_or_tf, dt=None):
706706 )
707707 except TypeError :
708708 raise ValueError (
709- "`arraylike_or_tf` must only contain array-likes or transfer "
709+ "`arraylike_or_tf` must only contain array_likes or transfer "
710710 "functions."
711711 )
712712 return tfn
0 commit comments