maximinSLHD(t, m, k, power = 15, nstarts = 1, itermax = 100, total_iter = 1e+06)
When $t=1$, the maximin-distance LHD is popularly used for designing computer experiments with quantitative factors.
When $t>1$, the maximin-distance SLHD is a special class of LHD which can be partitioned into several slices (blocks), each of which is also a LHD of smaller size. The optimal SLHD structure ensures the uniformity (space-filling property) in each slice as well as in the whole design. The SLHD is very important in designing computer experiments with quantitative and qualitative factors, where each slice is used as a design for quantitative factors under one of the t different level combinations of qualitative factors.
#Maximin-distance Latin hypercube design
D1<-maximinSLHD(t = 1, m = 10, k = 3)
D1$Design
D1$StandDesign
#Maximin-distance sliced Latin hypercube designs
D2<-maximinSLHD(t = 3, m = 4, k = 2)
D2$Design
D2$StandDesign
Run the code above in your browser using DataLab