Arma(signal)
Arma()所属R语言包:signal
Create an autoregressive moving average (ARMA) model.
创建一个自回归移动平均模型(ARMA)。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Returns an ARMA model. The model could represent a filter or system model.
返回一个ARMA模型。该模型可以代表一个过滤器或系统模型。
用法----------Usage----------
Arma(b, a)
## S3 method for class 'Zpg'
as.Arma(x, ...)
## S3 method for class 'Arma'
as.Arma(x, ...)
## S3 method for class 'Ma'
as.Arma(x, ...)
参数----------Arguments----------
参数:b
moving average (MA) polynomial coefficients.
移动平均线(MA)的多项式系数。
参数:a
autoregressive (AR) polynomial coefficients.
自回归(AR)多项式的系数。
参数:x
model or filter to be converted to an ARMA representation.
模型或过滤器被转换为一个ARMA表示。
参数:...
additional arguments (ignored).
额外的参数(忽略)。
Details
详细信息----------Details----------
The ARMA model is defined by:
ARMA模型的定义是:
The ARMA model can define an analog or digital model. The AR and MA polynomial coefficients follow the Matlab/Octave convention where the coefficients are in decreasing order of the polynomial (the opposite of the definitions for filter from the stats package and polyroot from the base package). For an analog model,
ARMA模型可以定义一个模拟或数字模型。 AR和MA多项式的系数遵循的的多项式(对面的定义过滤器从统计的基本包的包和polyroot)的顺序递减系数的Matlab /倍频程的会议。对于模拟模型,
For a z-plane digital model,
对于z平面上的数字模型,
as.Arma converts from other forms, including Zpg and Ma.
as.Arma转换成其他形式,包括Zpg和Ma。
值----------Value----------
A list of class Arma with the following list elements:
类Arma下面的列表元素的列表:
参数:b
moving average (MA) polynomial coefficients
移动平均线(MA)的多项式系数
参数:a
autoregressive (AR) polynomial coefficients
多项式系数自回归(AR)
(作者)----------Author(s)----------
Tom Short, EPRI Solutions, Inc., (<a href="mailto:tshort@eprisolutions.com">tshort@eprisolutions.com</a>)
参见----------See Also----------
See also as.Zpg, Ma, filter, and various filter-generation functions like butter and
请参阅as.Zpg,Ma,filter,各种过滤器的功能,如butter和
实例----------Examples----------
filt <- Arma(b = c(1, 2, 1)/3, a = c(1, 1))
zplane(filt)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|