ARMAtoMA_cpp: Converting an ARMA Process to an Infinite MA Process

Description Usage Arguments Details Value Author(s) Examples

Description

Takes an ARMA function and converts it to an infinite MA process.

Usage

1
ARMAtoMA_cpp(ar, ma, lag_max)

Arguments

ar

A column vector of length p

ma

A column vector of length q

lag_max

A int of the largest MA(Inf) coefficient required.

Details

This function is a port of the base stats package's ARMAtoMA. There is no significant speed difference between the two.

Value

A column vector containing coefficients

Author(s)

R Core Team and JJB

Examples

1
2
3
4
# ARMA(2,1)
ARMAtoMA_cpp(c(1.0, -0.25), 1.0, 10)
# ARMA(0,1)
ARMAtoMA_cpp(numeric(0), 1.0, 10)

gmwm documentation built on April 14, 2017, 4:38 p.m.