Member of the plots class.
plot3(x, y, z)
plot3(x, y, z, attributes)
plot3(x1, y1, z1, attributes1, x2, y2, z2, attributes2, ... , xn, yn, zn, attributesn)
Generates a 3D plot. If x, y, and z are real vectors of the same size, plot3(x, y, z) plots a curve in space. If x, y, or z is complex, plot3(x, y, z) plots a curve in space using real(x), real(y), and real(z). plot3(x, y, z, attributes) plots the curves using the specified attributes.
| Name | Description | ||||||||||||||||||||||||||||||||||
| x | Specifies a vector or matrix you want to plot. | ||||||||||||||||||||||||||||||||||
| y | Specifies a vector or matrix you want to plot. | ||||||||||||||||||||||||||||||||||
| z | Specifies a vector or matrix you want to plot. | ||||||||||||||||||||||||||||||||||
| attributes | Specifies valid plot attributes. Order the plot attributes by color, point style, and line style. For example, 'bo-' specifies that the plot is blue, marks points with circles, and uses solid lines. attributes is a string that accepts a combination of the following values.
|
This function is not supported in the LabVIEW Run-Time Engine. This function can remain in your scripts when you build a stand-alone application or shared library, but the LabVIEW Run-Time Engine does not execute this function.
X = [0:0.01:1];
Y = X.*X;
Z = sqrt(X);
plot3(X, Y, Z, 'bo-')