peaks(v = 49, w)
meshgrid(x,y)
.X
, Y
, and Z
components, the first two being the result of the meshgrid
function,
and Z
the application of the following function at the points of
X
and Y
: z <- 3 * (1-x)^2 * exp(-(x^2) - (y+1)^2) -
10 * (x/5 - x^3 - y^5) * exp(-x^2 - y^2) -
1/3 * exp(-(x+1)^2 - y^2)
peaks
is a function of two variables, obtained by translating
and scaling Gaussian distributions, which is useful for demonstrating
three-dimensional plots.meshgrid
peaks(3)
P <- peaks()
x <- P$X[1,]; y <- P$Y[, 1]
persp(x, y, P$Z)
Run the code above in your browser using DataLab