Previous Page | Next Page

The CALIS Procedure

PARAMETERS Statement
PARAMETERS | PARMS parameter(s) << = > number(s) >
<< , > parameter(s) << = > number(s) > ...>
;

The PARAMETERS statement defines additional parameters that are not elements of a model matrix to use in your own programming statements. You can specify more than one PARAMETERS statement with each PROC CALIS statement. The parameters can be followed by an equal sign and a number list. The values of the numbers list are assigned as initial values to the preceding parameters in the parameters list. For example, each of the following statements assigns the initial values ALPHA=.5 and BETA=-.5 for the parameters used in programming statements:

   parameters alfa beta=.5 -.5;
   parameters alfa beta (.5 -.5);
   parameters alfa beta .5 -.5;
   parameters alfa=.5 beta (-.5);


The number of parameters and the number of values does not have to match. When there are fewer values than parameter names, either the RANDOM= or START= option is used. When there are more values than parameter names, the extra values are dropped. Parameters listed in the PARAMETERS statement can be assigned initial values by programming statements or by the START= or RANDOM= option in the PROC CALIS statement.

Caution:The OUTRAM= and INRAM= data sets do not contain any information about the PARAMETERS statement or additional programming statements.

Previous Page | Next Page | Top of Page