Dawn@4: function [coeffs]=linearPrediction( x, filterOrder ) Dawn@4: Dawn@4: % This function takes in an audio frame and calculates the nth order filter Dawn@4: % coefficients that minimise the prediction error. Dawn@4: Dawn@4: coeffs = lpc( x, filterOrder );