why my arima model is unstable?
조회 수: 7 (최근 30일)
이전 댓글 표시
AR4 = arima();
AR4.Constant = 0;
AR4.Variance = 1;
[hz,hp] = zplane(1, [1 cell2mat({-1.352 1.338 -0.662 0.240})]);
AR4.AR = {-1.352 1.338 -0.662 0.240};
why error: nonseasonal autoregressive polynomial is unstable....
but, the zplane display all pole points is in the unit circle.
댓글 수: 0
답변 (1개)
Udit06
2024년 10월 1일
Hi,
You can refer to the following MATLAB answer which describes a similar issue. The error indicates that there are eigenvalues outside the unit circle and lowering the order of MA terms may help.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Conditional Mean Models에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!