Set the value of a parameter in a parameter list
[param_list,err] = set_param(list_name,param_name,param_value)
: :param_value the value to be associated to the parameter param_name. : :param_list the updated list of parameters. : :err an error flag which is set to %T if list_name is not of type
plist (this list has not been initialized by a call to init_param).
:
This function sets the value of an already existing parameter. If the parameter does not exist, err is set to %T. If the err output parameter is not present, when an error occurs, a message is printed in the console.
mylist = `init_param`_();
mylist = `add_param`_(mylist,'minbound',[0 0 0]);
[mylist,err] = set_param(mylist,'minbound',[1 1 1]); `disp`_(err);
[mylist,err] = set_param(mylist,'maxbound',[1 1 1]); `disp`_(err);