File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments