Hi Matt, thank you for your reply.
Yes, your assumption is correct. Actually, I am interested in the long run case, so I have to find the "C" matrix in the documentation you posted.
After several attemps and after looking at other eviews programming guides, I managed to write this part of code that seems to work pretty well:
Code: Select all
varest.cleartext(svar)
varest.append(svar) @lr1(@u2)=0
varest.append(svar) @lr1(@u3)=0
varest.append(svar) @lr1(@u4)=0
varest.append(svar) @lr2(@u3)=0
varest.append(svar) @lr2(@u4)=0
varest.append(svar) @lr3(@u4)=0
varest.svar(rtype=text,conv=1e-5)
matrix matb = varest.@svarbmat
The example is for the Cholesky case and I get the same matb matrix as in my original code. The only problem is that this procedure does not seem to store in any way the "C" matrix I need.
I would be grateful if you could give me your opinion on the code above and on how to save the "C" matrix.
Thanks a lot,
Alberto