@@ -15,7 +15,7 @@ LTI system representation
1515Linear time invariant (LTI) systems are represented in python-control in
1616state space, transfer function, or frequency response data (FRD) form. Most
1717functions in the toolbox will operate on any of these data types and
18- functions for convering between between compatible types is provided.
18+ functions for converting between between compatible types is provided.
1919
2020State space systems
2121-------------------
@@ -44,11 +44,12 @@ transfer functions
4444
4545.. math ::
4646
47- G(s) = \frac {\text {num}(s)}{\text {den(s)} }
47+ G(s) = \frac {\text {num}(s)}{\text {den} (s)}
4848 = \frac {a_0 s^n + a_1 s^{n-1 } + \cdots + a_n}
4949 {b_0 s^m + b_1 s^{m-1 } + \cdots + b_m},
5050
51- where n is generally greater than m (for a proper transfer function).
51+ where n is generally greater than or equal to m (for a proper transfer
52+ function).
5253
5354To create a transfer function, use the :class: `TransferFunction `
5455constructor:
@@ -97,7 +98,7 @@ Conversion between representations
9798----------------------------------
9899LTI systems can be converted between representations either by calling the
99100constructor for the desired data type using the original system as the sole
100- argument or using the explict conversion functions :func: `ss2tf ` and
101+ argument or using the explicit conversion functions :func: `ss2tf ` and
101102:func: `tf2ss `.
102103
103104.. _time-series-convention :
0 commit comments