フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Why specify intiial variance when estimating a conditional mean and variance model?

1 回表示 (過去 30 日間)
Danny
Danny 2014 年 9 月 27 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
In many MATLAB examples where the estimate function is used to estimate a conditional mean and variance model, the examples usual give an initial value for the constant of the conditional variance model:
load Data_EquityIdx
nasdaq = Dataset.NASDAQ;
r = price2ret(nasdaq);
N = length(r);
model = arima('ARLags',1,'Variance',garch(1,1),... 'Distribution','t');
fit = estimate(model,r,'Variance0',{'Constant0',0.001});
.
I was wondering why, if at all, this initial value is necessary?

回答 (0 件)

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by