ARMAtoMA(stats)
ARMAtoMA()所属R语言包:stats
Convert ARMA Process to Infinite MA Process
ARMA过程转换到无穷马过程
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Convert ARMA process to infinite MA process.
ARMA过程转换到无限的马过程。
用法----------Usage----------
ARMAtoMA(ar = numeric(0), ma = numeric(0), lag.max)
参数----------Arguments----------
参数:ar
numeric vector of AR coefficients
数字向量的AR系数
参数:ma
numeric vector of MA coefficients
马数字矢量系数
参数:lag.max
Largest MA(Inf) coefficient required.
最大的MA(INF)系数。
值----------Value----------
A vector of coefficients.
系数向量。
参考文献----------References----------
Methods, Second Edition. Springer.
参见----------See Also----------
arima, ARMAacf.
arima,ARMAacf。
举例----------Examples----------
ARMAtoMA(c(1.0, -0.25), 1.0, 10)
## Example from Brockwell & Davis (1991, p.92)[#示例Brockwell和戴维斯(1991年,第92页)]
## answer (1 + 3*n)*2^(-n)[#回答(1 + 3 * N)* 2 ^(-N)]
n <- 1:10; (1 + 3*n)*2^(-n)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|