Produce regular grid matrix.
Produce the grid used by persp
, contour, etc, as
an N x 2
matrix.
This is really outdated by expand.grid()
nowadays.
xy.grid(x, y)
x,y |
any vectors of same mode. |
a 2-column matrix of “points” for each combination of x
and
y
, i.e. with length(x) * length(y)
rows.
Martin Maechler, 26 Oct 1994.
expand.grid
which didn't exist when
xy.grid
was first devised.
plot(xy.grid(1:7, 10*(0:4))) x <- 1:3 ; y <- 10*(0:4) xyg <- xy.grid(x,y) ## Compare with expand.grid() : m2 <- as.matrix(expand.grid(y,x)[, 2:1]) dimnames(m2) <- NULL stopifnot(identical(xyg, m2))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.