MATLAB Function Reference Previous page   Next Page
semilogx, semilogy

Semilogarithmic plots

Syntax

Description

semilogx and semilogy plot data as logarithmic scales for the x- and y-axis, respectively, logarithmic.

semilogx(Y) creates a plot using a base 10 logarithmic scale for the x-axis and a linear scale for the y-axis. It plots the columns of Y versus their index if Y contains real numbers. semilogx(Y) is equivalent to semilogx(real(Y), imag(Y)) if Y contains complex numbers. semilogx ignores the imaginary component in all other uses of this function.

semilogx(X1,Y1,...) plots all Xn versus Yn pairs. If only Xn or Yn is a matrix, semilogx plots the vector argument versus the rows or columns of the matrix, depending on whether the vector's row or column dimension matches the matrix.

semilogx(X1,Y1,LineSpec,...) plots all lines defined by the Xn,Yn,LineSpec triples. LineSpec determines line style, marker symbol, and color of the plotted lines.

semilogx(...,'PropertyName',PropertyValue,...) sets property values for all lineseries graphics objects created by semilogx.

semilogy(...) creates a plot using a base 10 logarithmic scale for the y-axis and a linear scale for the x-axis.

h = semilogx(...) and h = semilogy(...) return a vector of handles to lineseries graphics objects, one handle per line.

Backward Compatible Version

hlines = semilogx('v6',...) and hlines = semilogy('v6',...) return the handles to line objects instead of lineseries objects.

Remarks

If you do not specify a color when plotting more than one line, semilogx and semilogy automatically cycle through the colors and line styles in the order specified by the current axes ColorOrder and LineStyleOrder properties.

You can mix Xn,Yn pairs with Xn,Yn,LineSpec triples; for example,

Examples

Create a simple semilogy plot.

See Also

Basic Plots and Graphs for related functions


Previous page  selectmoveresize sendmail Next page

© 1994-2005 The MathWorks, Inc.