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)
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.
Arguments
m
A positive integer, and it must be greater than or equal to 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.
#create an orthogonal LHD with m=3. So n=2^m+1=9 and k=2*m-2=4OLHD.Y1998(m=3)
#create an orthogonal LHD with m=4. So n=2^m+1=17 and k=2*m-2=6OLHD.Y1998(m=4)