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 / bar.m < prev    next >
Text File  |  1996-09-28  |  3KB  |  106 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 [xb, yb] = bar (x, y)
  16.  
  17. # usage: [xb, yb] = bar (x, y)
  18. #
  19. # Given two vectors of x-y data, bar produces a `bar' graph.
  20. #
  21. # If only one argument is given, it is taken as a vector of y-values
  22. # and the x coordinates are taken to be the indices of the elements.
  23. #
  24. # If two output arguments are specified, the data are generated but
  25. # not plotted.  For example,
  26. #
  27. #   bar (x, y);
  28. #
  29. # and
  30. #
  31. #   [xb, yb] = bar (x, y);
  32. #   plot (xb, yb);
  33. #
  34. # are equivalent.
  35. #
  36. # See also: plot, semilogx, semilogy, loglog, polar, mesh, contour,
  37. #           stairs, gplot, gsplot, replot, xlabel, ylabel, title 
  38.  
  39.   if (nargin == 1)
  40.     if (is_vector (x))
  41.       len = 3 * length (x) + 1;
  42.       tmp_xb = tmp_yb = zeros (len, 1);
  43.       tmp_xb(1) = 0.5;
  44.       tmp_yb(1) = 0;
  45.       k = 1;
  46.       for i = 2:3:len
  47.         tmp_xb(i) = k-0.5;
  48.         tmp_xb(i+1) = k+0.5;
  49.         tmp_xb(i+2) = k+0.5;
  50.         tmp_yb(i) = x(k);
  51.         tmp_yb(i+1) = x(k);
  52.         tmp_yb(i+2) = 0.0;
  53.         k++;
  54.       endfor
  55.     else
  56.       error ("bar: argument must be a vector");
  57.     endif
  58.   elseif (nargin == 2)
  59.     if (is_vector (x) && is_vector (y))
  60.       xlen = length (x);
  61.       ylen = length (y);
  62.       if (xlen == ylen)
  63.         len = 3 * xlen + 1;
  64.         tmp_xb = tmp_yb = zeros (len, 1);
  65.         delta = (x(2) - x(1)) / 2.0;
  66.         tmp_xb(1) = x(1) - delta;
  67.         tmp_yb(1) = 0.0;
  68.     k = 1;
  69.         for i = 2:3:len
  70.           tmp_xb(i) = tmp_xb(i-1);
  71.           tmp_xb(i+1) = tmp_xb(i) + 2.0 * delta;
  72.           tmp_xb(i+2) = tmp_xb(i+1);
  73.       tmp_yb(i) = y(k);
  74.       tmp_yb(i+1) = y(k);
  75.       tmp_yb(i+2) = 0.0;
  76.           if (k < xlen)
  77.             delta = (x(k+1) - x(k)) / 2.0;
  78.             if (x(k+1) < x(k))
  79.               error ("bar: x vector values must be in ascending order");
  80.             endif
  81.           endif
  82.           k++;
  83.     endfor
  84.       else
  85.         error ("bar: arguments must be the same length");
  86.       endif
  87.     else
  88.       error ("bar: arguments must be vectors");
  89.     endif
  90.   else
  91.     usage ("[xb, yb] = bar (x, y)");
  92.   endif
  93.  
  94.   if (nargout == 0)
  95.     plot (tmp_xb, tmp_yb);
  96.   else
  97.     xb = tmp_xb;
  98.     yb = tmp_yb;
  99.   endif
  100.  
  101. endfunction
  102.