I'm currently working on a model with the NKPC device, but I get a bit confused with they way of coding it. I use this functional form,
- Code: Select all
pi=beta*pi(+1)+(((1-theta*beta)*(1-theta))/theta)*cm;
but regarding inflation equation, should i used this one,
- Code: Select all
pi_h=py_h-py_h(-1);
or this one,
- Code: Select all
pi_h(+1)=py_h(+1)-py_h;
Results are strongly different, I don't get why.