Mercurial > hg > octave-lyh
view scripts/plot/semilogx.m @ 78:0fda6e1f90e0
[project @ 1993-08-30 15:40:16 by jwe]
author | jwe |
---|---|
date | Mon, 30 Aug 1993 15:40:48 +0000 |
parents | b4df021f796c |
children | 16a24e76d6e0 |
line wrap: on
line source
function semilogx (x1, x2) # usage: semilogx (x, y) # # Make a 2D plot of y versus x using a log scale for the x axis. # # See the help message for the plot command for a description of how # the arguments are interpreted. # # See also: plot, semilogy, loglog, polar, mesh, contour, bar, stairs, # gplot, gsplot, replot, xlabel, ylabel, title set logscale x; set nologscale y; set nopolar; if (nargin == 1) plot_int (x1); elseif (nargin == 2) plot_int (x1, x2); else usage = sprintf ("usage: semilogx (x)\n"); usage = sprintf ("%s semilogx (x, y)", usage); error (usage); endif endfunction