
Last chance! 50% off unlimited learning
Sale ends in
Generate an ARMA(1,1) sequence given
gen_arma11(N, phi = 0.1, theta = 0.3, sigma2 = 1)
An integer
for signal length.
A double
that contains autoregressive.
A double
that contains moving average.
A double
that contains process variance.
A vec
containing the MA(1) process.
The Autoregressive order 1 and Moving Average order 1 (ARMA(1,1)) process with non-zero parameters
The function first generates a vector of white noise using gen_wn
and then obtains the
ARMA values under the above equation.
The
The function implements a way to generate the