view scripts/plot/loglog.m @ 22:2cd2476fb32d

[project @ 1993-08-10 20:28:05 by jwe] Add init functions for balancing classes.
author jwe
date Tue, 10 Aug 1993 20:28:05 +0000
parents b4df021f796c
children 16a24e76d6e0
line wrap: on
line source

function loglog (x1, x2)

# usage: loglog (x, y)
#
# Make a 2D plot of y versus x using log scales for both axes.
#
# See the help message for the plot command for a description of how
# the arguments are interpreted. 
#
# See also: plot, semilogx, semilogy, polar, mesh, contour, bar, stairs,
#           gplot, gsplot, replot, xlabel, ylabel, title 


  set logscale x;
  set logscale y;
  set nopolar;

  if (nargin == 1)
    plot_int (x1);
  elseif (nargin == 2)
    plot_int (x1, x2);
  else
    usage = sprintf ("usage: loglog (x)\n");
    usage = sprintf ("%s       loglog (x, y)", usage);
    error (usage);
  endif

endfunction