Functions for the placement of node coordinates in the
euclidean plane. Function coordLHS
generates a space-filling
latin hypercube sample, coordUniform
samples points from a
bivariate uniform distribution and coordGrid
generates a regular
grid of points.
coordLHS(n, lower = 0, upper = 1, method = NULL)coordUniform(n, lower, upper)
coordGrid(n, lower, upper)
[matrix(n, 2)
] Matrix of node coordinates.
[integer(1)
]
Number of points to generate.
[numeric(2)
]
Minimal values for the first and second coordinates respectively.
Default is 0.
[numeric(2)
]
Maximal values for the first and second coordinates respectively.
Default is 1.
[function
]
Function from package lhs.
Default is maximinLHS
.