view 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 source
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 );