Skip to content

Commit 314c4eb

Browse files
committed
DOC: fixed typos + address @roryyorke feedback
1 parent b881b77 commit 314c4eb

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

doc/conventions.rst

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ LTI system representation
1515
Linear time invariant (LTI) systems are represented in python-control in
1616
state space, transfer function, or frequency response data (FRD) form. Most
1717
functions 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

2020
State 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

5354
To create a transfer function, use the :class:`TransferFunction`
5455
constructor:
@@ -97,7 +98,7 @@ Conversion between representations
9798
----------------------------------
9899
LTI systems can be converted between representations either by calling the
99100
constructor 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

Comments
 (0)