SMC Procedure
PARAMETERS Statement
PARAMETERS parameter-specification <,…, parameter-specification> < / options > ;
PARMS parameter-specification <,…, parameter-specification> < / options > ;
The PARAMETERS (or PARMS) statement lists the names of the model parameters and specifies the initial value of each parameter. Whether the PARAMETERS statement is required depends on whether the SUBMITMODEL statement is specified: If you specify the SUBMITMODEL statement, the PARAMETERS statement is ignored; if you omit the SUBMITMODEL statement, the PARAMETERS statement is required.
A parameter-specification has the following general form, where name identifies the parameter and value provides a single initial value for the parameter:
name = value
Multiple parameter-specifications must be separated by commas or spaces. You can specify the following options after a forward slash (/):
The parameter names are case-insensitive, and the following conditions must be satisfied:
The parameter names must not have duplicates.
The parameter names must not contain the dot (".") symbol.
"_t" or "_time" is a reserved name in PROC SMC. "_t" or "_time" (case-insensitive) must not be used as a parameter name.
"dft_" is a reserved prefix in PROC SMC. The variable and parameter names must not start with "dft_" (case-insensitive).
For example, the following PARMS statement specifies three parameters and sets their initial values:
parms phi=0.9 beta=1 gamma=0.4;