![]() | Download Help (Windows Only) |
Owning Class: plots
Requires: MathScript RT Module
semilog_y(y)
semilog_y(x, y)
semilog_y(x, y, attributes)
semilog_y(x1, y1, x2, y2, ..., xN, yN)
semilog_y(x1, y1, x2, y2, ..., xN, yN, attributes)
semilog_y(y, name1, value1, ..., nameN, valueN)
semilog_y(x, y, name1, value1, ..., nameN, valueN)
semilog_y(x1, y1, attributes1, x2, y2, attributes2, ..., xN, yN, attributesN)
obj = semilog_y(y)
obj = semilog_y(x, y)
obj = semilog_y(x, y, attributes)
obj = semilog_y(x1, y1, x2, y2, ..., xN, yN)
obj = semilog_y(x1, y1, x2, y2, ..., xN, yN, attributes)
obj = semilog_y(y, name1, value1, ..., nameN, valueN)
obj = semilog_y(x, y, name1, value1, ..., nameN, valueN)
obj = semilog_y(x1, y1, attributes1, x2, y2, attributes2, ..., xN, yN, attributesN)
Legacy Name: semilogy
Generates a plot with a logarithmic y-scale. semilog_y(y) plots the columns of y against the indexes of the columns. If y is complex, semilog_y(y) plots real(y) against imag(y). If x and y are real vectors, semilog_y(x, y) plots y against x. semilog_y(x, y, attributes) plots y against x using the specified attributes. semilog_y(x1, y1, x2, y2, ..., xN, yN, attributes) plots y1, y2, ..., and yN against x1, x2, ..., and xN, respectively. In this syntax, LabVIEW uses the specified attributes for the last plot and the default attributes for previous plots. semilog_y(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. 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 object. obj is a reference to a line object. |
The following table lists the support characteristics of this function.
Supported in the LabVIEW Run-Time Engine | No (returns error or is ignored) |
Supported on RT targets | No |
x = 1:10;
semilog_y(x, x.^2, 'ro-')
x = 1:10;
obj = semilog_y(x, x.^2, 'Color', 'c', 'Marker', 's')
Helpful
Not Helpful