home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / scripts / plot / plot_int.m < prev    next >
Text File  |  1996-09-28  |  2KB  |  103 lines

  1. # Copyright (C) 1993, 1994, 1995 John W. Eaton
  2. # This file is part of Octave.
  3. # Octave is free software; you can redistribute it and/or modify it
  4. # under the terms of the GNU General Public License as published by the
  5. # Free Software Foundation; either version 2, or (at your option) any
  6. # later version.
  7. # Octave is distributed in the hope that it will be useful, but WITHOUT
  8. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  9. # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  10. # for more details.
  11. # You should have received a copy of the GNU General Public License
  12. # along with Octave; see the file COPYING.  If not, write to the Free
  13. # Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  14.  
  15. function plot_int (caller, ...)
  16.  
  17.   if (nargin == 2)
  18.  
  19.     plot_int_1 (va_arg (), "");
  20.  
  21.   elseif (nargin > 2)
  22.  
  23.     first_plot = 1;
  24.     hold_state = ishold;
  25.  
  26.     unwind_protect
  27.  
  28.       x = va_arg ();
  29.       nargin = nargin - 2;
  30.       x_set = 1;
  31.       y_set = 0;
  32.  
  33. # Gather arguments, decode format, and plot lines.
  34.  
  35.       while (nargin-- > 0)
  36.  
  37.     fmt = "";
  38.     new = va_arg ();
  39.  
  40.     if (isstr (new))
  41.       if (! x_set)
  42.         error ("plot: no data to plot");
  43.       endif
  44.       fmt = plot_opt (caller, new);
  45.       if (! y_set)
  46.         plot_int_1 (x, fmt)
  47.       else
  48.         plot_int_2 (x, y, fmt)
  49.       endif
  50.       hold on
  51.       x_set = 0;
  52.       y_set = 0;
  53.     elseif (x_set)
  54.       if (y_set)
  55.         plot_int_2 (x, y, fmt);
  56.         hold on
  57.         x = new;
  58.         y_set = 0;
  59.       else
  60.         y = new;
  61.         y_set = 1;          
  62.       endif
  63.     else
  64.       x = new;
  65.       x_set = 1;
  66.     endif
  67.  
  68.       endwhile
  69.  
  70. # Handle last plot.
  71.  
  72.       if  (x_set)
  73.     if (y_set)
  74.       plot_int_2 (x, y, fmt);
  75.     else
  76.       plot_int_1 (x, fmt);
  77.     endif
  78.       endif
  79.  
  80.     unwind_protect_cleanup
  81.  
  82.       if (! hold_state)
  83.         hold off
  84.       endif
  85.  
  86.     end_unwind_protect
  87.  
  88.   else
  89.  
  90.     msg = sprintf ("%s (x)\n", caller);
  91.     msg = sprintf ("%s       %s (x, y)\n", msg, caller);
  92.     msg = sprintf ("%s       %s (x2, y1, x2, y2)\n", msg, caller);
  93.     msg = sprintf ("%s       %s (x, y, fmt)", msg, caller);
  94.     usage (msg);
  95.  
  96.   endif
  97.  
  98. endfunction
  99.