model - use real values if available
Posted: Sat Dec 24, 2011 3:03 am
Hi,
I have a little problem using a deterministic model in EViews5 :
I have equations like the 2 following :
and the series y1 and y2 look like :
So when i do model.solve with these equations on the sample [t2-t3] , i get :
whereas as seen as y1(t2) exists, i would like to get
Is it just an option I have to change on my program before solving the model ?
Thanks in advance
I have a little problem using a deterministic model in EViews5 :
I have equations like the 2 following :
Code: Select all
y1=c(1)*x1+c(2)*X(2)
y2=c(3)*y1+C(4)*x(3)
Code: Select all
y1 y2
t0 1 1
t1 1 1
t2 1 NA
t3 NA NA
Code: Select all
y1_0 y2_0
t0 1 1
t1 1 1
t2 c(1)*x1+c(2)*X(2) c(3)*[c(1)*x1+c(2)*X(2)]+C(4)*x(3)
t3 c(1)*x1+c(2)*X(2) c(3)*[c(1)*x1+c(2)*X(2)]+C(4)*x(3)
Code: Select all
y1_0 y2_0
t0 1 1
t1 1 1
t2 y1 c(3)*[y1]+C(4)*x(3)
t3 c(1)*x1+c(2)*X(2) c(3)*[c(1)*x1+c(2)*X(2)]+C(4)*x(3)
Thanks in advance