mtkFastDesigner: The constructor of the class 'mtkFastDesigner'

Description Usage Arguments Value See Also Examples

Description

The constructor

Usage

1
mtkFastDesigner(mtkParameters = NULL, listParameters = NULL)

Arguments

mtkParameters

a vector of [mtkParameter] representing the parameters necessary to run the process.

listParameters

a named list containing the parameters to pass while calling the process. This gives another way to specify the parameters.

Value

an object of the mtkFastDesigner class

See Also

help(fast, sensitivity)

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
##			 Sensitivity analysis of the "Ishigami" model with the "Fast" method 

#	Input the factors
		data(Ishigami.factors)
		
# 	Build the processes and workflow:

#   1) the design process
		exp1.designer <- mtkFastDesigner(listParameters
	    	= list(n=1000)) 

#   2) the simulation process
		exp1.evaluator <- mtkNativeEvaluator(model="Ishigami") 

#   3) the analysis process 
		exp1.analyser <- mtkFastAnalyser()

#   4) the workflow

		exp1 <- mtkExpWorkflow(expFactors=Ishigami.factors,
	    processesVector = c(design=exp1.designer,
		evaluate=exp1.evaluator, analyze=exp1.analyser))

# 	Run the workflow and reports the results.
		run(exp1)
		print(exp1)

mtk documentation built on May 2, 2019, 4:15 a.m.