Plot a LHS design
scidoe_plotlhs(H)
a n-by-2 or n-by-3 matrix of doubles, the LHS sampling
Plots a 2D or 3D Latin Hypercube Sampling.
// 2D H = scidoe_lhsdesign(2,5); scf(); scidoe_plotlhs(H) xtitle("LHS design","X1","X2") // Add labels: xstring(H(:,1),H(:,2),string(1:5)); // 3D H = scidoe_lhsdesign(3,5); scf(); scidoe_plotlhs(H) xtitle("LHS design","X1","X2")