Command:

addFacConst (  
char* name,
double value,
char* note
)

What:

Adds a new constant factor to the configuration to be used for the sample generation

Parameters:

name
[char*]
defines the factor's name. It must begin with a letter and can contain only letters and numbers, this parameter cannot be null!
value
[double precision #]
the value of the constant associated with the factor
note
[char*]
the factor note is optional in Matlab


Return:

error_code [int]: 1 if the operation has occurred without errors, 0 if an error has occurred

Examples:

addFacConst('fac1', 0.821, 'fac1note')

this command adds a factor called fac1 represented by a constant value of 0.821

- A Matlab example script using this command set_model_inputs.m

All Factor Commands: