plmesh
( | x , |
y , | |
z , | |
nx , | |
ny , | |
opt
) ; |
Plots a surface mesh within the environment set up by plw3d
. The
surface is defined by the matrix
,
the point z
[nx
][ny
]
being the
value of the function at
z
[i][j](
.
Note that the points in vectors x
[i], y
[j])
and
x
do not need to be equally
spaced, but must be stored in ascending order. The parameter
y
controls the way in
which the surface is displayed. For further details see the section called “Three-dimensional Plots”.
opt
x
(PLFLT_VECTOR
, input)
A vector containing the x coordinates at which the function is evaluated.
y
(PLFLT_VECTOR
, input)
A vector containing the y coordinates at which the function is evaluated.
z
(PLFLT_MATRIX
, input)
A matrix containing function values to plot. Should have
dimensions of nx
by ny
.
nx
(PLINT
, input)
Number of
values at
which function has been evaluated.
x
ny
(PLINT
, input)
Number of
values at
which function has been evaluated.
y
opt
(PLINT
, input)
Determines the way in which the surface is represented:
: Lines
are drawn showing
opt
=DRAW_LINEX
as a function
of z
for each
value of x
.
y
[j]
: Lines
are drawn showing
opt
=DRAW_LINEY
as a function
of z
for each
value of y
.
x
[i]
: Network
of lines is drawn connecting points at which function is
defined.
opt
=DRAW_LINEXY
Redacted form: plmesh(x, y, z, opt)
This function is used in example 11.