Owning Class: plots
Requires: MathScript RT Module
stem3d(z)
stem3d(z, attributes)
stem3d(x, y, z)
stem3d(x, y, z, attributes)
Legacy Name: stem3
Generates a 3D stem plot. You can use stem plots to display an impulse response.
| 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. If z is a vector, length(z) must equal length(x) and length(y). size(z) must equal size(x) and size(y). | ||||||||||||||||||||||||||||||||||
| 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 = rand(3, 4);
y = rand(3, 4);
z = rand(3, 4);
stem3d(x, y, z)