Member of the plots class.
contourf(z)
contourf(z, n)
contourf(z, h)
contourf(x, y, z)
contourf(x, y, z, n)
contourf(x, y, z, h)
Generates a contour plot with intensity shading.
| Name | Description |
| x | Specifies the surface from z in relation to the x-plane. x is a matrix. size(x) must equal size(z). |
| y | Specifies the surface from z in relation to the y-plane. y is a matrix. size(y) must equal size(z). |
| z | Specifies the heights of the contour lines in relation to the z-plane. z is a matrix. |
| n | Specifies the number of contour lines you want to plot. |
| h | Specifies the height levels. h is a vector. length(h) must equal the number of contour lines you want to plot. |
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.
contourf(peaks(50))