Description Class Hierarchy Constructor Slots Methods Author(s) Examples
The mtkParameter class is a class used to manage the parameter concept.
mtkValue
mtkParametersignature(name='unknown', type='logical', val=NULL)
make.mtkParameterListsignature(x=list())
name:(character) the name of the parameter.
type:(character) the type of the parameter.
val:(ANY) the value of the parameter.
getNamesignature( this = "mtkParameter"): Returns the value of the slot "name".
getValuesignature( this = "mtkParameter"): Returns the value of the slot "val".
getTypesignature(this = "mtkParameter"): Returns the value of the slot "type".
setNamesignature( this = "mtkParameter", name="character"): Gives a new value to the slot "name".
setValuesignature( this = "mtkParameter", val="ANY"): Gives a new value to the slot "val".
setTypesignature(this = "mtkParameter", type="character"): Gives a new value to the slot "type".
showsignature( object = "mtkParameter"): Prints a report of the data managed by the underlying object.
printsignature(x = "mtkParameter"): Prints the information managed by the underlying object.
Juhui WANG, MIA-jouy, INRA
1 2 3 4 5 6 7 8 | # Create an object of the 'mtkParameter' class.
p <- mtkParameter(name="x", type="double", val=0.0)
# We usually use the 'make.mtkParameterList()' function to define a list of
# 'mtkParameter' instead of the constructor
# of the 'mtkParameter' class
plist <- make.mtkParameterList(list(min=-1,max=+1,shape="hello"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.