home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21eb.zip / octave / SCRIPTS.ZIP / scripts / statistics / base / var.m < prev   
Text File  |  1997-02-19  |  1KB  |  45 lines

  1. ## Copyright (C) 1995, 1996, 1997  Kurt Hornik
  2. ## 
  3. ## This program is free software; you can redistribute it and/or modify
  4. ## it under the terms of the GNU General Public License as published by
  5. ## the Free Software Foundation; either version 2, or (at your option)
  6. ## any later version.
  7. ## 
  8. ## This program is distributed in the hope that it will be useful, but
  9. ## WITHOUT ANY WARRANTY; without even the implied warranty of
  10. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11. ## General Public License for more details. 
  12. ## 
  13. ## You should have received a copy of the GNU General Public License
  14. ## along with this file.  If not, write to the Free Software Foundation,
  15. ## 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  16.  
  17. ## usage:  var (x)
  18. ##
  19. ## For vector arguments, return the (real) variance of the values.
  20. ## For matrix arguments, return a row vector contaning the variance for
  21. ## each column.
  22.   
  23. ## Author:  KH <Kurt.Hornik@ci.tuwien.ac.at>
  24. ## Description:  Compute variance
  25.  
  26. function y = var(x)
  27.   
  28.   if (nargin != 1)
  29.     usage ("var (x)");
  30.   endif
  31.   
  32.   [nr, nc] = size (x);
  33.   if (nr == 0 || nc == 0)
  34.     error ("var:  x must not be empty");
  35.   elseif ((nr == 1) && (nc == 1))
  36.     y = 0;
  37.   elseif ((nr == 1) || (nc == 1))
  38.     n = length (x);
  39.     y = (sumsq (x) - sum(x)^2 / n) / (n - 1);
  40.   else
  41.     y = (sumsq (x) - sum(x).^2 / nr) / (nr - 1);
  42.   endif
  43.   
  44. endfunction
  45.