add(self,
name,
string=None,
default=None,
units=None,
desc=None,
conv_factor=None,
grace_string=None)
| source code
|
Add a parameter to the list.
- Parameters:
name (str) - The name of the parameter. This will be used as the variable
name.
string (None or str) - The string representation of the parameter.
default (anything) - The default value of the parameter.
units (None or str) - A string representing the parameters units.
desc (None or str) - The text description of the parameter.
conv_factor (None, float or func) - The factor of conversion between different parameter units.
grace_string (None or str) - The string used for the axes in Grace plots of the data.
|