Linear Prediction

predict(v, m, n) Returns a vector of n predicted values past the last value in v. The predict function uses Burg's method to calculate autocorrelation coefficients for the last m points in v. These are used to predict the value of the (m + 1)th point; this procedure repeats in a sliding window.

Arguments:

Notes:

Related Topics