Member of the plots class.
plotmatrix(x)
plotmatrix(x, attributes)
plotmatrix(x, y)
plotmatrix(x, y, attributes)
Generates rows and columns of scatter plots. plotmatrix(x, y) plots the columns of x against the columns of y.
| Name | Description | ||||||||||||||||||||||||||||||||||
| x | Specifies a matrix you want to plot. The number of columns in x specifies the number of columns of scatter plots you want to generate. | ||||||||||||||||||||||||||||||||||
| y | Specifies a matrix you want to plot. The number of columns in y specifies the number of rows of scatter plots you want to generate. length(y) must equal length(x). | ||||||||||||||||||||||||||||||||||
| 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(10, 3);
y = rand(10, 2);
plotmatrix(x, y)