Ans = get(M,Query)
[Ans,Ans,...] = get(M,Query,Query,...)
M
[ model ] - Model object.
Query
[ char ] - Query to the model object.
Ans
[ ... ] - Answer to the query.This is the categorised list of queries to model objects. Note that letter 'y'
is used in various contexts to denote measurement variables or equations, 'x'
transition variables or equations, 'e'
shocks, 'p'
parameters, 'g'
exogenous variables, 'd'
deterministic trend equations, and 'l'
dynamic links. The property names are case insensitive.
'sstate'
-- Returns [ struct ] a database with the steady states for all model variables. The steady states are described by complex numbers in which the real part is the level and the imaginary part is the growth rate.
'sstateLevel'
-- Returns [ struct ] a database with the steady-state levels for all model variables.
'sstateGrowth'
-- Returns [ struct ] a database with steady-state growth (first difference for linearised variables, gross rate of growth for log-linearised variables) for all model variables.
'dtrends'
-- Returns [ struct ] a database with the effect of the deterministic trends on the measurement variables. The effect is described by complex numbers the same way as the steady state.
'dtrendsLevel'
-- Returns [ struct ] a database with the effect of the deterministic trends on the steady-state levels of the measurement variables.
'dtrendsGrowth'
-- Returns [ struct ] a database with the effect of deterministic trends on steady-state growth of the measurement variables.
'sstate+dtrends'
-- Returns [ struct ] the same as 'sstate' except that the measurement variables are corrected for the effect of the deterministic trends.
'sstateLevel+dtrendsLevel'
-- Returns [ struct ] the same as 'sstateLevel' except that the measurement variables are corrected for the effect of the deterministic trends.
'sstateGrowth+dtrendsGrowth'
-- Returns [ struct ] the same as 'sstateGrowth'
except that the measurement variables are corrected for the effect of the deterministic trends.
'yList'
, 'xList'
, 'eList'
, 'pList'
, 'gList'
- Return [ cellstr ] the lists of, respectively, measurement variables (y
), transition variables (x
), shocks (e
), parameters (p
), and exogenous variables (g
), each in order of appearance of the names in declaration sections of the original model file. Note that the list of parameters, 'pList'
, does not include the names of std deviations or cross-correlations.
'eyList'
-- Returns [ cellstr ] the list of measurement shocks in order of their appearance in the model code declarations; only those shocks that actually occur in at least one measurement equation are returned.
'exList'
-- Returns [ cellstr ] the list of transition shocks in order of their appearance in the model code declarations; only those shocks that actually occur in at least one transition equation are returned.
'stdList'
-- Returns [ cellstr ] the list of the names of the standard deviations for the shocks in order of the appearance of the corresponding shocks in the model code.
'corrList'
-- Returns [ cellstr ] the list of the names of cross-correlation coefficients for the shocks in order of the appearance of the corresponding shocks in the model code.
'stdCorrList'
-- Returns [ cellstr ] the list of the names of std deviations and cross-correlation coefficients for the shocks in order of the appearance of the corresponding shocks in the model code.
'yEqtn'
, 'xEqtn'
, 'dEqtn'
, 'lEqtn'
- Return [ cellstr ] the lists of, respectively, to measurement equations (y
), transition equations (x
), deterministic trends (d
), and dynamic links (l
), each in order of appearance in the original model file.
'links'
-- Returns [ struct ] a database with the dynamic links with fields names after the LHS name.
'rpteq'
-- Returns [ rpteq ] a reporting equations (rpteq) object (if !reporting_equations
were included in the model file).
'derivatives'
-- Returns [ cellstr ] the symbolic/automatic derivatives for each model equation; in each equation, the derivatives w.r.t. all variables present in that equation are evaluated at once and returned as a vector of numbers; see also 'wrt'
.
'wrt'
- Returns [ cellstr ] the list of the variables (and their auxiliary lags or leads) with respect to which the corresponding equation in 'derivatives'
is differentiated.
'descript'
-- Returns [ struct ] a database with user descriptions of model variables, shocks, and parameters.
'yDescript'
, 'xDescript'
, 'eDescript'
, 'pDescript'
, 'gDescript'
- Return [ cellstr ] user descriptions of, respectively, measurement variables (y
), transition variables (x
), shocks (e
), parameters (p
), and exogenous variables (g
).
'alias'
-- Returns [ struct ] a database with all aliases of model variables, shocks, and parameters.
'yAlias'
, 'xAlias'
, 'eAlias'
, 'pAlias'
, 'gAlias'
- Return [ cellstr ] the aliases of, respectively, measurement variables (y
), transition variables (x
), shocks (e
), parameters (p
), and exogenous variables (g
).
'labels'
-- Returns [ cellstr ] the list of all user labels added to equations.
'yLabels'
, 'xLabels'
, 'dLabels'
, 'lLabels'
, 'rLabels'
- Return [ cellstr ] user labels added, respectively, to measurement equations (y
), transition equations (x
), deterministic trends (d
), and dynamic links (l
).
'eqtnAlias'
-- Returns [ cellstr ] the list of all aliases added to equations.
'yEqtnAlias'
, 'xEqtnAlias'
, 'dEqtnAlias'
, 'lEqtnAlias'
, 'rEqtnAlias'
- Return [ cellstr ] the aliases of, respectively, measurement equations (y
), transition equations (x
), deterministic trends (d
), and dynamic links (l
).
'corr'
-- Returns [ struct ] a database with current cross-correlation coefficients of shocks.
'nonzeroCorr'
-- Returns [ struct ] a database with current nonzero cross-correlation coefficients of shocks.
'parameters'
-- Returns [ struct ] a database with current parameter values, including the std devs and non-zero corr coefficients.
'std'
-- Returns [ struct ] a database with current std deviations of shocks.
'stableRoots'
-- Returns [ cell of numeric ] a vector of the model eigenvalues that are smaller than one in magnitude (allowing for rounding errors around one).
'unitRoots'
-- Returns [ cell of numeric ] a vector of the model eigenvalues that equal one in magnitude (allowing for rounding errors around one).
'unstableRoots'
[ cell of numeric ] A vector of the model eigenvalues that are greater than one in magnitude (allowing for rounding errors around one).
'build'
-- Returns [ numeric ] IRIS version number under which the model object has been built.
'eqtnBlk'
-- Returns [ cell ] of cell str with the recursive block structure of steady-state equations (if the block-recursive analysis has already been performed).
'log'
-- Returns [ struct ] a database with true
for each log-linearised variables, and false
for each linearised variable.
'maxLag'
-- Returns [ numeric ] the maximum lag in the model.
'maxLead'
-- Returns [ numeric ] the maximum lead in the model.
'nameBlk'
-- Returns [ cell ] of cell str with the recursive block structure of variable names (if the block-recursive analysis has already been performed).
'stationary'
-- Returns [ struct ] a database with true
for each stationary variables, and false
for each unit-root (non-stationary) variables (under current solution).
'nonStationary'
-- Returns [ struct ] a database with true
for each unit-root (non-stationary) varible, and false
for each stationary variable (under current solution).
'stationaryList'
-- Returns [ cellstr ] the list of stationary variables (under current solution).
'nonStationaryList'
-- Returns [ cellstr ] cell with the list of unit-root (non-stationary) variables (under current solution).
'initCond'
-- Returns [ cellstr ] the list of the lagged transition variables that need to be supplied as initial conditions in simulations and forecasts. The list of the initial conditions is solution-specific as the state-spece coefficients at some of the lags may evaluate to zero depending on the current parameters.
'yVector'
-- Returns [ cellstr ] the list of measurement variables in order of their appearance in the rows and columns of state-space matrices (effectively identical to 'yList'
) from the model/sspace
function.
'xVector'
-- Returns [ cellstr ] the list of transition variables, and their auxiliary lags and leads, in order of their appearance in the rows and columns of state-space matrices from the model/sspace
function.
'xfVector'
-- Returns [ cellstr ] the list of forward-looking (i.e. non-predetermined) transition variables, and their auxiliary lags and leads, in order of their appearance in the rows and columns of state-space matrices from the model/sspace
function.
'xbVector'
-- Returns [ cellstr ] the list of backward-looking (i.e. predetermined) transition variables, and their auxiliary lags and leads, in order of their appearance in the rows and columns of state-space matrices from the model/sspace
function.
'eVector'
-- Returns [ cellstr ] the list of the shocks in order of their appearance in the rows and columns of state-space matrices (effectively identical to 'eList'
) from the model/sspace
function.
The expressions for symbolic/automatic derivatives of individual model equations returned by 'derivatives'
are expressions that evaluate the derivatives with respect to all variables present in that equation at once. The list of variables with respect to which each equation is differentiated is returned by 'wrt'
.
The expressions returned by the query 'derivatives'
can refer to
alpha
;X
;X{-1}
or X{2}
.Note that the lags and leads of variables must be, in general, preserved in the derivatives for non-stationary (unit-root) models. For stationary models, the lags and leads can be removed and each simply replaced with the current date of the respective variable.
d = get(m,'derivatives');
w = get(m,'wrt');
The 1-by-N cell array d
(where N is the total number of equations in the model) will contain expressions that evaluate to the vector of derivatives of the individual equations w.r.t. to the variables present in that equation:
d{k}
is an expression that returns, in general, a vector of M numbers. These M numbers are the derivatives of the k-th equation w.r.t to M variables whose list is in
w{k}