Member of the plots class.
loglog(y)
loglog(x, y)
loglog(x, y, attributes)
loglog(y, name1, value1, ..., nameN, valueN)
loglog(x, y, name1, value1, ..., nameN, valueN)
loglog(x1, y1, attributes1, x2, y2, attributes2, ..., xN, yN, attributesN)
obj = loglog(y)
obj = loglog(x, y)
obj = loglog(x, y, attributes)
obj = loglog(y, name1, value1, ..., nameN, valueN)
obj = loglog(x, y, name1, value1, ..., nameN, valueN)
obj = loglog(x1, y1, attributes1, x2, y2, attributes2, ..., xN, yN, attributesN)
Displays a double-logarithmic plot. LabVIEW uses a logarithmic scale for both axes. loglog(y) plots the columns of y against the indexes of the columns. If y is complex, loglog(y) plots real(y) against imag(y). If x and y are real vectors, loglog(x, y) plots y against x. loglog(x, y, attributes) plots y against x using the specified attributes. loglog(x, y, name1, value1, ..., nameN, valueN) sets the line attributes according to the attribute names and values you specify.
| Name | Description | ||||||||||||||||||||||||||||||||||
| x | Specifies a vector or matrix you want to plot. | ||||||||||||||||||||||||||||||||||
| y | Specifies a 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. You also can use the line attributes to set the color, point style, line style, and other attributes of the plot. attributes is a string that accepts a combination of the following values.
|
||||||||||||||||||||||||||||||||||
| name | Specifies the name of the attribute. name is a string. | ||||||||||||||||||||||||||||||||||
| value | Specifies the value of the attribute. |
| Name | Description |
| obj | Returns the reference to the line LabVIEW creates. obj is a line object. |
This function is not supported in the LabVIEW Run-Time Engine if you request an output from the function. Either do not request an output or remove this function from scripts before you build a stand-alone application or shared library.
X = 1:10;
obj = loglog(2.^X, 3.^X, 'rx:')
X = 1:10;
obj = loglog(2.^X, 3.^X, 'Color', 'm', 'Marker', 's', 'MarkerSize', 4)