Autoregressive Models

本文介绍了自回归模型的基本原理,包括其作为线性预测公式如何基于系统的前一输出和输入进行预测。文中还详细讨论了自回归模型的计算方法及其在声音信号处理中的应用,特别是如何确定声音系统的特性。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值