File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -75,9 +75,9 @@ class FrequencyResponseData(LTI):
75
75
w : iterable of real frequencies
76
76
List of frequency points for which data are available.
77
77
smooth : bool, optional
78
- If ``True``, create an interpoloation function that allows the
78
+ If ``True``, create an interpolation function that allows the
79
79
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
81
81
can only be obtained at the frequencies specified in ``w``.
82
82
83
83
Attributes
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ class TransferFunction(LTI):
99
99
ninputs, noutputs, nstates : int
100
100
Number of input, output and state variables.
101
101
num, den : 2D list of array
102
- Polynomial coeffients of the numerator and denominator.
102
+ Polynomial coefficients of the numerator and denominator.
103
103
dt : None, True or float
104
104
System timebase. 0 (default) indicates continuous time, True indicates
105
105
discrete time with unspecified sampling time, positive number is
@@ -143,7 +143,7 @@ class TransferFunction(LTI):
143
143
creation of transfer functions. For example,
144
144
145
145
>>> s = TransferFunction.s
146
- >>> G = (s + 1)/(s**2 + 2*s + 1)
146
+ >>> G = (s + 1)/(s**2 + 2*s + 1)
147
147
148
148
"""
149
149
You can’t perform that action at this time.
0 commit comments