Member of the plots class.
bar(y)
bar(y, width)
bar(y, style)
bar(y, color)
bar(x, y)
bar(x, y, width)
bar(x, y, style)
bar(x, y, color)
bar(y, width, style, color)
bar(x, y, width, style, color)
Generates a plot of vertical bars.
| Name | Description | ||||||||||||||||
| x | Specifies the x-coordinates of the bars you want to plot. x is a vector. length(x) must equal length(y). If you do not specify x, the x-axis scale equals length(y) if y is a vector or size(y, 1) if y is a matrix. | ||||||||||||||||
| y | Specifies the heights of the bars you want to plot. y is a vector or matrix. | ||||||||||||||||
| width | Specifies the width of the bars you want to plot. | ||||||||||||||||
| style | Specifies the plot style. style is a string that accepts the following values.
|
||||||||||||||||
| color | Specifies a valid color attribute for the plot. color is a string that accepts 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.
y = rand(10, 2);
bar(y);