powered by
Grid generator for bivariate distributions.
grid2d(x = (0:10)/10, y = x)
grid2d
returns a list with two vectors named $x and $y spanning the grid defined by the coordinate vectors x and y.
$x
$y
x
y
two numeric vectors defining the x and y coordinates.
Diethelm Wuertz.
## grid2d - # Create a square grid: x <- seq(0, 10, length = 6) X <- grid2d(x = x, y = x) cbind(X$x, X$y)
Run the code above in your browser using DataLab