File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ def __lpc_helper(frame, order):
66
66
algorithm to solve the Hermitian toeplitz with respect to a. Using the
67
67
special symmetry in the matrix, the inversion can be done in O(p^2)
68
68
instead of O(p^3).
69
-
69
+
70
70
Returns:
71
71
- (numpy.ndarray) : linear prediction coefficents (lpc coefficents: a).
72
72
- (numpy.ndarray) : the error term is the square root of the squared prediction error (e**2).
@@ -139,7 +139,7 @@ def lpc(
139
139
.. math::
140
140
E = \\ sum_{i=1}^{N} \\ left( x[i] - \\ sum_{k=1}^{p} a_{k} x[i-k] \\ right)^2
141
141
142
- All the previous steps can be presented in a matrix, which is a Toeplitz matrix :math:`R.A = 0`
142
+ All the previous steps can be presented in a matrix, which is a Toeplitz matrix :math:`R.A = 0`
143
143
144
144
References:
145
145
.. [Darconis] : Draconi, Replacing Levinson implementation in scikits.talkbox,
You can’t perform that action at this time.
0 commit comments