![]() | Download Help (Windows Only) |
Owning Class: plots
Requires: MathScript RT Module
meshcontour(z)
meshcontour(z, color)
meshcontour(x, y, z)
meshcontour(x, y, z, color)
Legacy Name: meshc
Plots a 3D mesh surface in conjunction with contour lines. If x, y, and z are real matrices of the same size, meshcontour plots corresponding values of x, y, and z. If x and y are real vectors and z is a real matrix, meshcontour plots the i-th element of x, the j-th element of y, and the ij-th element of z. If you specify only a real matrix z, meshcontour plots the ij-th element of z against i and j.
Name | Description |
---|---|
x | Specifies a real vector or matrix. |
y | Specifies a real vector or matrix. |
z | Specifies a real matrix. |
color | Specifies a valid color attribute for the plot. color is a real matrix of the same size as z. The default is the values in z. |
The following table lists the support characteristics of this function.
Supported in the LabVIEW Run-Time Engine | No (always ignored) |
Supported on RT targets | No |
[X, Y] = meshgrid2d(0:0.1:1);
Z = sqrt(X.^2+Y.^2);
meshcontour(X, Y, Z)
Helpful
Not Helpful