annotate Code/Descriptors/Matlab/Common/linearPrediction.m @ 4:92ca03a8fa99 tip

Update to ICASSP 2013 benchmark
author Dawn Black
date Wed, 13 Feb 2013 11:02:39 +0000
parents
children
rev   line source
Dawn@4 1 function [coeffs]=linearPrediction( x, filterOrder )
Dawn@4 2
Dawn@4 3 % This function takes in an audio frame and calculates the nth order filter
Dawn@4 4 % coefficients that minimise the prediction error.
Dawn@4 5
Dawn@4 6 coeffs = lpc( x, filterOrder );