Any help how to Backcast ???

3 ビュー (過去 30 日間)
Panty
Panty 2014 年 10 月 14 日
コメント済み: O.Hubert 2022 年 9 月 1 日
Hi guys,
Does anyone know how to backcast a time-series lets say with an AR(2) model ?? any link or whatever??
Many thanks
  2 件のコメント
Panty
Panty 2014 年 10 月 14 日
Here is a code I use for forecasting..So I am looking for a way to modify this code so I can conduct backcastings..Do you know If I can modify it?? Many thanks.
row=75;
data(1:row,1)=USActualGDPPotentialsandOutputGapsS1(1:row,1);
mdl=arima(3,0,0);
for ii=0:99;
RecursiveData=data(1:row,1);
mdlEstimate = estimate(mdl,RecursiveData,'print',false);
[Y,YMSE,~] = forecast(mdlEstimate,1,'Y0',RecursiveData);
forecastY(ii+1,1) = Y;
data(row+1,1)= Y;
row=row+1;
end;
O.Hubert
O.Hubert 2022 年 9 月 1 日
A backcast is essentially a forecast backwards.
In that case, simply flip your data with
flipud
and use your code.

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeOceanography and Hydrology についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by