Join us for
RADAR: AI Edition

simts (version 0.1.1)

gen_ma1: Generate an Moving Average Order 1 (MA(1)) Process

Description

Generate an MA(1) Process given θ and σ2.

Usage

gen_ma1(N, theta = 0.3, sigma2 = 1)

Arguments

N

An integer for signal length.

theta

A double that contains moving average.

sigma2

A double that contains process variance.

Value

A vec containing the MA(1) process.

Process Definition

The Moving Average order 1 (MA(1)) process with non-zero parameter θ(1,+1) and σ2IR+. This process is defined as: xt=εt+θ1εt1, where εtiidN(0,σ2)

Generation Algorithm

The function first generates a vector of white noise using gen_wn and then obtains the MA values under the above equation.

The X0 (first value of Xt) is discarded.

Details

The function implements a way to generate the xt values without calling the general ARMA function.