To provide the most recent news and documentation
www.pymvpa.org reflects the
development 2.0 series (renamed 0.6 series) of PyMVPA. If you are interested in the
documentation of the previous stable 0.4 series of PyMVPA, please
visit
v04.pymvpa.org .
mvpa2.base.param.KernelParameter
class mvpa2.base.param. KernelParameter ( default , ro=False , index=None , value=None , name=None , doc=None , **kwargs )
Just that it is different beast
Specify a Parameter with a default value and arbitrary
number of additional attributes.
Parameters : name : str
Name of the parameter under which it should be available in its
respective collection.
doc : str
Documentation about the purpose of this parameter.
index : int or None
Index of parameter among the others. Determines order of listing
in help. If None, order of instantiation determines the index.
ro : bool
Either value which will be assigned in the constructor is read-only and
cannot be changed
value :
Actual value of the parameter to be assigned
View the discussion thread.