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
