我估计Stata中的mgarch模型:
set obs 1000
g x= rnormal(0,1)
g y= rnormal (0,1)
g z= rnormal(0,1)
egen t=fill(1 2)
tsset t
mgarch ccc ( x y z = L.x L.y L.z )
我需要从这个估计中提取常数条件相关矩阵。我相信它应该是1000x1000矩阵。
我使用Stata 13和选项:
predict cor, correlation
不起作用,虽然它在包postestimation选项中提到。