Initialize the structure which will handles the parameters list
param_list = init_param(['param_name1',param_value1,...])
an initialized list of parameters (if no input parameters are shipped, this list is empty and is of type plist).
This function initialize an empty list of parameters. You must initialize the list of parameters before using it.
// Creation of an empty plist mylist = init_param(); mylist = add_param(mylist,'minbound',[0 0 0]); // Creation of a pre-filled plist mylist_2 = init_param('minbound', [0 0 0], 'maxbound', [1 1 1]); | ![]() | ![]() |