ARIMA samae forecasts across horizons
이전 댓글 표시
Why is it that I get the same forecasts for all forecasting horizons in MATLAB?
Mdl = arima('Constant',1,'AR',{0.3});
Mdl.Variance = 1
[Y,E]=simulate(Mdl,20);
Mdl1=arima(1,0,0);
e=estimate(Mdl1,Y);
forecast(e,10)
ans =
1.3642
1.3642
1.3642
1.3642
1.3642
1.3642
1.3642
1.3642
1.3642
1.3642
댓글 수: 1
BN
2022년 11월 18일
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Model Predictive Control Toolbox에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!