AR model with drift and deterministic trend
조회 수: 15 (최근 30일)
이전 댓글 표시
I would like to estimate an AR model with drift and deterministic trend. For example: yt=c+δt+β1yt−1+β2yt−2, where c is the drift coefficient and δ the deterministic trend coefficient.
I was already able to estimate and AR model with drift:
model_drift = arima('ARLags',1:2);
model_drift = estimate(model_drift,series_gdp,'Display','off');
summarize(model_drift);
but I don't know how to include a deterministic trend.
댓글 수: 0
답변 (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!