.\" This page was automatically generated. Do not edit! .\" .TH PLOT3D 3plplot "January, 2019" "" "PLplot API" .SH NAME \fBplot3d\fP - Plot 3-d surface plot .SH SYNOPSIS \fBplot3d\fP(\fIx\fP, \fIy\fP, \fIz\fP, \fInx\fP, \fIny\fP, \fIopt\fP, \fIside\fP) .SH DESCRIPTION .P Plots a three-dimensional surface plot within the environment set up by \fBplw3d\fP(3plplot). The surface is defined by the matrix \fIz\fP[\fInx\fP][\fIny\fP] , the point \fIz\fP[i][j] being the value of the function at (\fIx\fP[i],\fIy\fP[j]). Note that the points in vectors \fIx\fP and \fIy\fP do not need to be equally spaced, but must be stored in ascending order. The parameter \fIopt\fP controls the way in which the surface is displayed. For further details see the PLplot documentation. The only difference between \fBplmesh\fP(3plplot) and \fBplot3d\fP(3plplot) is that \fBplmesh\fP(3plplot) draws the bottom side of the surface, while \fBplot3d\fP(3plplot) only draws the surface as viewed from the top. .P Redacted form: \fBplot3d(x, y, z, opt, side)\fP .P This function is used in examples 11 and 21. .SH ARGUMENTS .TP \fIx\fP (\fBPLFLT_VECTOR\fP(3plplot), input) A vector containing the x coordinates at which the function is evaluated. .TP \fIy\fP (\fBPLFLT_VECTOR\fP(3plplot), input) A vector containing the y coordinates at which the function is evaluated. .TP \fIz\fP (\fBPLFLT_MATRIX\fP(3plplot), input) A matrix containing function values to plot. Should have dimensions of \fInx\fP by \fIny\fP. .TP \fInx\fP (\fBPLINT\fP(3plplot), input) Number of \fIx\fP values at which function is evaluated. .TP \fIny\fP (\fBPLINT\fP(3plplot), input) Number of \fIy\fP values at which function is evaluated. .TP \fIopt\fP (\fBPLINT\fP(3plplot), input) Determines the way in which the surface is represented: \fIopt\fP=DRAW_LINEX : Lines are drawn showing \fIz\fP as a function of \fIx\fP for each value of \fIy\fP[j] . \fIopt\fP=DRAW_LINEY : Lines are drawn showing \fIz\fP as a function of \fIy\fP for each value of \fIx\fP[i] . \fIopt\fP=DRAW_LINEXY : Network of lines is drawn connecting points at which function is defined. .TP \fIside\fP (\fBPLBOOL\fP(3plplot), input) Flag to indicate whether or not ``sides'' should be draw on the figure. If \fIside\fP is true sides are drawn, otherwise no sides are drawn. .SH AUTHORS Many developers (who are credited at http://plplot.org/credits.php) have contributed to PLplot over its long history. .SH SEE ALSO PLplot documentation at http://plplot.org/documentation.php.