I am new to using Eviews. I want to fit my data to an exponential curve: y = a*e^(bx). I am running the regression using these two equations:
MICE_1= COEF(1)*(EXP(COEF(2)*OBSERVATION))
LOG(MICE_1) = COEF(3) + COEF(4)*OBSERVATION
Since, both equations are the same, coef(2)=coef(4) and coef(1)= exp(coef(3))
However, I am getting different coefficients using the two equations. Can someone please explain why is this happening?