the problem with lambda. You already mentioned that before .
>> model_diagnostics(M_,options_,oo_)
The following endogenous variables aren't present at the current period in the model:
lambda
Undefined function 'BggGKlinear_steadystate' for input arguments of type 'double'.
Error in evaluate_steady_state_file (line 49)
[ys,check] = h_steadystate(ys_init, exo_ss);
Error in evaluate_steady_state (line 58)
[ys,params,info] = evaluate_steady_state_file(ys_init,exo_ss,M, ...
Error in model_diagnostics (line 65)
[dr.ys,params,check1]=evaluate_steady_state(oo.steady_state,M,options,oo,1);
Is it fine to write in the model(linear) block (i.e. is it the samething?) :
lambda = - rr;
... instead of....
lambda(+1) = - rr (+1) ;
Correction: Many many Thanks Prof. Johannes. I think I fixed by doing what I just wrote above.
My last question: I have a vector called
mycalib = [KYW, APS, PSI, mup, ThetaB, sigmaB, xiB, sigmaE, xiE,muY]
in my steady state file:
FILENAME_steadystate.m
How can I import these values in my dynare file called: ?
FILENAME.mod
what are the commands for that. I have been searching for days, I can not get the syntax right. (Ps. It will help me get around with this warning that SS parameters are not initialized (although the are) . Just the idea that it shows up seems bothering.