Member of the plots class.
stem(y)
stem(x, y)
stem(x, y, attributes)
stem(x, y, 'filled', attributes)
Generates a stem plot. You can use stem plots to display an impulse response. stem plots y as stems originating in x. stem(y) plots the columns of y against the indexes of the columns. If x and y are real vectors, stem(x, y) plots y against x. stem(x, y, attributes) plots y against x using the specified attributes. stem(x, y, 'filled', attributes) plots y against x using the specified attributes and uses solid circles for the stem plot.
| Name | Description | ||||||||||||||||||||||||||||||||||
| x | Specifies a real vector or matrix you want to plot. | ||||||||||||||||||||||||||||||||||
| y | Specifies a real 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.1:1];
Y = X.*X;
stem(X, Y, 'r')