how is YMSE calculated
조회 수: 6 (최근 30일)
이전 댓글 표시
[YF,YMSE] = forecast(AR_model,step,data)
Could anyone guide me on how is YMSE calculated, I couldn't find any code or algorithm for calculating YMSE?
Thank you!
댓글 수: 0
채택된 답변
Shashank Gupta
2021년 5월 25일
Hi,
forecast function explicitly does not return the error matrix, The function forecasts the output of an identified time series model in to some steps into the future. Although you can use compare function and find out the goodness of fit of your predicted model. Alternately you can use your own error matrix to check if the forecast model working as intended.
I hope this helps.
Cheers.
댓글 수: 2
Shashank Gupta
2021년 5월 25일
YMSE - Forecast error variances of future observations
For time-invariant models in which the length of each observation vector (n) is the same, this is a numPeriods-by-n matrix. For time-varying models in which the length of the observation vector changes, this is a numPeriods-by-1 cell array in which each element contains a time-varying n-element vector of forecast error variances associated with the corresponding period.
If you want to know more information for the function, You can access the code simply by
edit forecast
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Statistics and Machine Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!