Check if a parameter is present in a parameter list
[res,err] = is_param(list_name,param_name)
: :res the result: %T is the parameter is present, %F otherwise. : :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 checks if a parameter is present in a parameter list. 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]);
`disp`_(is_param(mylist,'minbound'));
`disp`_(is_param(mylist,'maxbound'));