changeset 12579:a7796f4b9837 octave-forge

fix documentation [bugs #44673]
author schloegl
date Thu, 02 Apr 2015 09:57:46 +0000
parents fed0de8c335a
children b6eace8bc216
files extra/tsa/inst/lpc.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/extra/tsa/inst/lpc.m	Wed Apr 01 16:51:59 2015 +0000
+++ b/extra/tsa/inst/lpc.m	Thu Apr 02 09:57:46 2015 +0000
@@ -2,7 +2,7 @@
 % LPC Linear prediction coefficients 
 % The Burg-method is used to estimate the prediction coefficients
 %
-% A = lpc(Y [,P]) finds the coefficients  A=[ 1 A(2) ... A(N+1) ],
+% A = lpc(X [,P]) finds the coefficients  A=[ 1 A(2) ... A(N+1) ],
 %     	of an Pth order forward linear predictor
 %     
 % 	 Xp(n) = -A(2)*X(n-1) - A(3)*X(n-2) - ... - A(N+1)*X(n-P)