Learn R Programming

LHD (version 1.2.0)

OLHD1998: Orthogonal Latin Hypercube Design

Description

OLHD1998 returns an orthogonal Latin hypercube design generated by the construction method of Ye (1998)

Usage

OLHD1998(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

Run this code
# NOT RUN {
#create an orthogonal LHD with m=3. So n=2^m+1=9 and k=2*m-2=4
OLHD1998(m=3)

#create an orthogonal LHD with m=4. So n=2^m+1=17 and k=2*m-2=6
OLHD1998(m=4)

# }

Run the code above in your browser using DataLab