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 / hist.m < prev    next >
Text File  |  1996-09-28  |  3KB  |  98 lines

  1. # Copyright (C) 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 [nn, xx] = hist (y, x)
  16.  
  17. # usage: [NN, XX] = hist (Y, X)  or  hist (Y, X)
  18. #
  19. # Produce histogram counts or plots.
  20. #
  21. # With one vector input argument, plot a histogram of the values with
  22. # 10 bins.  The range of the histogram bins is determined by the range
  23. # of the data.
  24. #
  25. # Given a second scalar argument, use that as the number of bins.
  26. #
  27. # Given a second vector argument, use that as the centers of the bins,
  28. # with the width of the bins determened from the adjacent values in
  29. # the vector.
  30. #
  31. # Extreme values are lumped in the first and last bins.
  32. #
  33. # With two output arguments, produce the values NN and XX such that
  34. # bar (XX, NN) will plot the histogram.
  35. #
  36. # See also: bar
  37.  
  38.   if (nargin < 1 || nargin > 2)
  39.     usage ("[nn, xx] = hist (y, x)");
  40.   endif
  41.     
  42.   if (is_vector (y))
  43.     max_val = max (y);
  44.     min_val = min (y);
  45.   else
  46.     error ("hist: first argument must be a vector");
  47.   endif
  48.  
  49.   if (nargin == 1)
  50.     n = 10;
  51.     delta = (max_val - min_val) / n / 2;
  52.     x = linspace (min_val+delta, max_val-delta, n);
  53.     cutoff = x + delta;
  54.   elseif (nargin == 2)
  55.     if (is_scalar (x))
  56.       n = x;
  57.       if (n <= 0)
  58.         error ("hist: number of bins must be positive");
  59.       endif
  60.       delta = (max_val - min_val) / n / 2;
  61.       x = linspace (min_val+delta, max_val-delta, n);
  62.       cutoff = x + delta;
  63.     elseif (is_vector (x))
  64.       tmp = sort (x);
  65.       if (any (tmp != x))
  66.         warning ("hist: bin values not sorted on input");
  67.         x = tmp;
  68.       endif
  69.       n = length (x);
  70.       cutoff = zeros (1, n-1);
  71.       for i = 1:n-1
  72.         cutoff (i) = (x (i) + x (i+1)) / 2;
  73.       endfor
  74.     else
  75.       error ("hist: second argument must be a scalar or a vector");
  76.     endif
  77.   endif
  78.  
  79.   freq = zeros (1, n);
  80.   freq (1) = sum (y < cutoff (1));
  81.   for i = 2:n-1
  82.     freq (i) = sum (y >= cutoff (i-1) & y < cutoff (i));
  83.   endfor
  84.   freq (n) = sum (y >= cutoff (n-1));
  85.  
  86.   if (nargout == 2)
  87.     nn = freq;
  88.     xx = x;
  89.   else
  90.     bar (x, freq);
  91.   endif
  92.  
  93. endfunction
  94.