Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: Français - Português do Brasil - 日本語 -
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

// 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]);

See Also

  • add_param — Add a parameter to a list of parameters
  • set_param — Set the value of a parameter in a parameter list
  • get_param — Get the value of a parameter in a parameter list
  • remove_param — Remove a parameter and its associated value from a list of parameters
  • is_param — Check if a parameter is present in a parameter list

Authors

  • Yann COLLETTE
<< get_param Parameters is_param >>

Consortium Scilab (DIGITEO)
Scilab Enterprises

Copyright (c) 2011-2012 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Oct 05 12:10:01 CEST 2011