dynare/tests/ep/ar_steadystate.m

9 lines
174 B
Matlab
Raw Normal View History

function [ys, info] = ar_steadystate(ys, exogenous)
% Steady state routine for ar.mod (First order autoregressive process)
2017-06-01 19:34:01 +02:00
global M_
2017-06-01 19:34:01 +02:00
info = 0;
ys(1)=M_.params(2);
ys(2)=0;