Mercurial > hg > emotion-detection-top-level
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Code/Descriptors/Matlab/Common/linearPrediction.m Wed Feb 13 11:02:39 2013 +0000 @@ -0,0 +1,6 @@ +function [coeffs]=linearPrediction( x, filterOrder ) + +% This function takes in an audio frame and calculates the nth order filter +% coefficients that minimise the prediction error. + +coeffs = lpc( x, filterOrder );