AS.m Computes inflation based on aggregate supply relationship. Inputs are output growth, the slope of the aggregate supply curve, the time-varying component of the aggregate supply relation and the constant.
0001 function pi_as = as(g,as_slope,ast,as_constant); 0002 % AS.m 0003 % 0004 % Computes inflation based on aggregate supply relationship. Inputs are 0005 % output growth, the slope of the aggregate supply curve, the time-varying 0006 % component of the aggregate supply relation and the constant. 0007 0008 pi_as = as_slope*g + ast+as_constant;