Learn R Programming

mtk (version 1.0)

setName-methods: The setName method

Description

Gives a new name to the underlying object

Usage

setName(this, name)

Arguments

this
the underlying object
name
a string indicating the new name.

Value

Details

Used by many classes. The behavior depends on the underlying class.

Examples

Run this code

# Define a factor
	x1 <- make.mtkFactor(name="x1", type="double", distribName="unif",
		 distribPara=list(min=-pi, max=pi))
		 
# Change the numeric value of the factor to "numeric" type.

	setName(x1, name="mit")
	
# Create a  new object of mtkValue
d <- mtkValue("a", "double", 0)

# Change the name of the object to "x" type.
setName(d, "x")

Run the code above in your browser using DataLab