[Master Index] [Index for /tools/hpmatlab/toolbox/signal]

lpc

(/tools/hpmatlab/toolbox/signal/lpc.m)


Function Synopsis

a=lpc(h,N);

Help text

LPC	Linear Predictive Coding.
	A = LPC(X,N) finds the coefficients of an Nth order auto-regressive
	process that models the time series X as follows:
	   X(n) = -A(2)*X(n-1) - A(3)*X(n-2) - ... - A(N+1)*X(n-N-1)
	Here, X is the real input time series (a vector), and N is the order of 
	denominator polynomial A(z), i.e. A = [ 1 A(2) ... A(N+1) ].

	If you leave N unspecified, LPC uses a default N = LENGTH(X)-1.

	LPC uses the autocorrelation method, also known as the maximum
	entropy method (MEM) of spectral estimation. It calls the LEVINSON 
	function.

	See also PRONY, STMCB, LEVINSON.

Cross-Reference Information

This function calls

Produced by mat2html on Wed Feb 8 12:25:18 EST 1995
Cross-Directory links are: ON