The autoregressive model is one of a group of linear prediction formulas that attempt to predict an output y[n] of a system based on the previous outputs ( y[n-1],y[n-2]...) and inputs ( x[n], x[n-1], x[n-2]...).
Deriving the linear prediction model involves determining the coeffiecients a1,a2,.. and b0,b1,b2,... in the equation:
ye[n] (estimated) = a1*y[n-1] + a2*y[n-2]... + b0*x[n] + b1*x[n-1] + ...
Note the REMARKABLE similarity between the prediction formula and the difference equation used to describe discrete linear time invariant systems. Calculating a set of coefficients that give a good prediciton ye[n] is tantamount to determining what the system is, within the constraints of the order chosen.
A model which depends only on the previous outputs of the system is called an autoregressive model (AR), while a model which depends only on the inputs to the system is called a moving average model (MA), and of course a model based on both inputs and outputs is an autoregressive-moving-average model (ARMA). Note that by definition, the AR model has only poles while the MA model has only zeros.
Several methods and algorithms exist for calculating the coefficients of the AR model, all of which are implemented by the matlab command 'ar'. We use the default setting ('forward-backward') to calculate the AR model for the vocal tract, with the following justifications:
The simplest model for the vocal tract, consisting of linked cylindrical tubes, produces an all-pole transfer function.
Only the outputs of the system are available to us.
Note that the AR model is based on frequency-domain analysis and should be windowed. (We use the hamming.)
The order of the system: We are using the AR model to determine the characteristics of the vocal system and from this system model evaluate the formants, or resonant frequencies of the vocal system.(i.e. the peaks in the frequency response) One conjugate pole pair is required to produce each formant, and one formant is expected in each 1kHz band or so. Therefore the order of the model is a function of the sampling frequency: fs/2 + 2 (the added 2 being the 'empirically determined adjustment factor')
All our autoregressive matlab techniques are in the function formants.m.(or see the attachement)
There is TONS of material about autoregressive models. Check out your library...
From: http://www.owlnet.rice.edu/~elec431/projects96/digitalbb/autoregression.html
本文介绍了自回归模型的基本原理,包括其作为线性预测公式如何基于系统的前一输出和输入进行预测。文中还详细讨论了自回归模型的计算方法及其在声音信号处理中的应用,特别是如何确定声音系统的特性。
707

被折叠的 条评论
为什么被折叠?



