OLHD.Y1998 {LHD} | R Documentation |
Orthogonal Latin Hypercube Design
Description
OLHD.Y1998
returns a 2^m+1
by 2m-2
orthogonal Latin hypercube design generated by the construction method of Ye (1998)
Usage
OLHD.Y1998(m)
Arguments
m |
A positive integer, and it must be greater than or equal to 2. |
Value
If all inputs are logical, then the output will be an orthogonal LHD with the following run size: n=2^m+1
and the following factor size: k=2m-2
.
References
Ye, K.Q. (1998) Orthogonal column Latin hypercubes and their application in computer experiments. Journal of the American Statistical Association, 93(444), 1430-1439.
Examples
#create an orthogonal LHD with m=3. So n=2^m+1=9 and k=2*m-2=4
OLHD.Y1998(m=3)
#create an orthogonal LHD with m=4. So n=2^m+1=17 and k=2*m-2=6
OLHD.Y1998(m=4)
[Package LHD version 1.3.3 Index]