필터 지우기
필터 지우기

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