| gridVector {fBasics} | R Documentation |
Creates from two vectors rectangular grid coordinates..
gridVector(x, y = NULL)
x, y |
two numeric vectors of length m and n which span the
rectangular grid of size m times n. If y takes
the default value, NULL, then y=x.
|
returns a list with two entries named $X and $Y,
giving the coordinates which span the bivariate grid.
## gridVector - gridVector((0:10)/10) gridVector((0:10)/10, (0:10)/10)