Home > documentation > as.m

as

PURPOSE ^

AS.m

SYNOPSIS ^

function pi_as = as(g,as_slope,ast,as_constant);

DESCRIPTION ^

 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.

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

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;

Generated on Mon 07-Feb-2011 12:06:56 by m2html © 2005