locGrid {geoCount} | R Documentation |
This function simulates a given number of locations distributed on a grid.
locGrid(x, y, nx, ny)
x |
the length of x edge |
y |
the length of y edge |
nx |
the number of locations in x direction |
ny |
the number of locations in y direction |
The grid lies in the range of (0, x) \times (0, y).
A (nx\times ny) \times 2 matrix indicates the x-y coordinates of the locations.
Liang Jing ljing918@gmail.com
locCircle
,
locSquad
,
simData
,
plotData
.
## Not run: loc <- locGrid(1, 2, 10, 5) plot(loc, xlab="x", ylab="y") ## End(Not run)