Skip to content

Commit 70a6cf9

Browse files
committed
TRV: fix typos pointed out by @namannimmo10
1 parent bf2472f commit 70a6cf9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

control/frdata.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ class FrequencyResponseData(LTI):
7575
w : iterable of real frequencies
7676
List of frequency points for which data are available.
7777
smooth : bool, optional
78-
If ``True``, create an interpoloation function that allows the
78+
If ``True``, create an interpolation function that allows the
7979
frequency response to be computed at any frequency within the range of
80-
frquencies give in ``w``. If ``False`` (default), frequency response
80+
frequencies give in ``w``. If ``False`` (default), frequency response
8181
can only be obtained at the frequencies specified in ``w``.
8282
8383
Attributes

control/xferfcn.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ class TransferFunction(LTI):
9999
ninputs, noutputs, nstates : int
100100
Number of input, output and state variables.
101101
num, den : 2D list of array
102-
Polynomial coeffients of the numerator and denominator.
102+
Polynomial coefficients of the numerator and denominator.
103103
dt : None, True or float
104104
System timebase. 0 (default) indicates continuous time, True indicates
105105
discrete time with unspecified sampling time, positive number is
@@ -143,7 +143,7 @@ class TransferFunction(LTI):
143143
creation of transfer functions. For example,
144144
145145
>>> s = TransferFunction.s
146-
>>> G = (s + 1)/(s**2 + 2*s + 1)
146+
>>> G = (s + 1)/(s**2 + 2*s + 1)
147147
148148
"""
149149

0 commit comments

Comments
 (0)