Learn R Programming

mtk (version 1.0)

mtkExpFactors: The constructor of the class mtkExpFactors

Description

This class is used to define the input factors for a simulation experiment.

Usage

mtkExpFactors(expFactorsList=list())

Arguments

expFactorsList
a list of mtkFactor objects.

Value

mtkExpFactors class

Examples

Run this code

# Create an object of the class mtkExpFactor
	x1 <- make.mtkFactor(name="x1", distribName="unif",
	             distribPara=list(min=-pi, max=pi))
	x2 <- make.mtkFactor(name="x2", distribName="unif",
                     distribPara=list(min=-pi, max=pi))
	x3 <- make.mtkFactor(name="x3", distribName="unif", 
                     distribPara=list(min=-pi, max=pi))
	ishi.factors <- mtkExpFactors(list(x1,x2,x3))

Run the code above in your browser using DataLab