locGrid: Simulate Locations on Grid

Description Usage Arguments Details Value Author(s) See Also Examples

View source: R/simData.R

Description

This function simulates a given number of locations distributed on a grid.

Usage

1
locGrid(x, y, nx, ny)

Arguments

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

Details

The grid lies in the range of (0, x) \times (0, y).

Value

A (nx\times ny) \times 2 matrix indicates the x-y coordinates of the locations.

Author(s)

Liang Jing ljing918@gmail.com

See Also

locCircle, locSquad, simData, plotData.

Examples

1
2
3
4
5
## Not run: 
  loc <- locGrid(1, 2, 10, 5)
  plot(loc, xlab="x", ylab="y")

## End(Not run)

geoCount documentation built on May 2, 2019, 5:46 p.m.

Related to locGrid in geoCount...