フィルターのクリア

simulate unstable ar model

1 回表示 (過去 30 日間)
mathxaz
mathxaz 2019 年 6 月 10 日
Hello everyone!
For class I have to do a monte carlo simulation of an unstable AR process.
Unfortunately, when I program the model, it cannot estimate it since it is unstable:
alpha_1=0.7;
alpha_2 = 0.3;
alpha = [alpha_1 alpha_2]; %AR parameter
cons = (1 - alpha_1 - alpha_2)*2; %constant of the AR process
model = arima('constant',cons,'AR',alpha, 'variance', 1);
I get the following error message after the last row:
"Nonseasonal autoregressive polynomial is unstable."
Anyone knows how to handle this?
Thanks in advance.

回答 (0 件)

カテゴリ

Help Center および File ExchangeConditional Mean Models についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by