Initialize the structure which will handles the parameters list (original) (raw)

Please note that the recommended version of Scilab is 2026.0.1. This page might be outdated.
See the recommended documentation of this function

Scilab help >> Parameters > init_param

init_param

Initialize the structure which will handles the parameters list

Calling Sequence

param_list = init_param(['param_name1',param_value1,...])

Arguments

param_list

an initialized list of parameters (if no input parameters are shipped, this list is empty and is of type plist).

Description

This function initialize an empty list of parameters. You must initialize the list of parameters before using it.

Examples

mylist = init_param(); mylist = add_param(mylist,'minbound',[0 0 0]);

mylist_2 = init_param('minbound', [0 0 0], 'maxbound', [1 1 1]);

See Also