IRIS Toolbox Reference Manual

subsasgn

Subscripted assignment for model and systemfit objects

Syntax for assigning parameterisations from other object

M(Inx) = N

Syntax for deleting specified parameterisations

M(Inx) = []

Syntax for assigning parameter values or steady-state values

M.Name = X
M(Inx).Name = X
M.Name(Inx) = X

Syntax for assigning std deviations or cross-correlations of shocks

M.std_Name = X
M.corr_Name1__Name2 = X

Note that a double underscore is used to separate the Names of shocks in correlation coefficients.

Input arguments

Output arguments

Description

Example

Expand the number of parameterisations in a model or systemfit object that has initially just one parameterisation:

m(1:10) = m;

The parameterisation is simply copied ten times within the model or systemfit object.