comparison 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
comparison
equal deleted inserted replaced
3:e1cfa7765647 4:92ca03a8fa99
1 function [coeffs]=linearPrediction( x, filterOrder )
2
3 % This function takes in an audio frame and calculates the nth order filter
4 % coefficients that minimise the prediction error.
5
6 coeffs = lpc( x, filterOrder );