home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21fb.zip / octave / SCRIPTS.ZIP / scripts / statistics / base / corrcoef.m < prev    next >
Encoding:
Text File  |  1999-11-20  |  1.6 KB  |  50 lines

  1. ## Copyright (C) 1996, 1997 John W. Eaton
  2. ##
  3. ## This file is part of Octave.
  4. ##
  5. ## Octave is free software; you can redistribute it and/or modify it
  6. ## under the terms of the GNU General Public License as published by
  7. ## the Free Software Foundation; either version 2, or (at your option)
  8. ## any later version.
  9. ##
  10. ## Octave is distributed in the hope that it will be useful, but
  11. ## WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13. ## General Public License for more details.
  14. ##
  15. ## You should have received a copy of the GNU General Public License
  16. ## along with Octave; see the file COPYING.  If not, write to the Free
  17. ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA
  18. ## 02111-1307, USA.
  19.  
  20. ## -*- texinfo -*-
  21. ## @deftypefn {Function File} {} corrcoef (@var{x}, @var{y})
  22. ## If each row of @var{x} and @var{y} is an observation and each column is
  23. ## a variable, the (@var{i},@var{j})-th entry of
  24. ## @code{corrcoef (@var{x}, @var{y})} is the correlation between the
  25. ## @var{i}-th variable in @var{x} and the @var{j}-th variable in @var{y}.
  26. ## If called with one argument, compute @code{corrcoef (@var{x}, @var{x})}.
  27. ## @end deftypefn
  28.  
  29. ## Author: Kurt Hornik <hornik@ci.tuwien.ac.at>
  30. ## Created: March 1993
  31. ## Adapted-By: jwe
  32.  
  33. function retval = corrcoef (x, y)
  34.  
  35.   if (nargin < 1 || nargin > 2)
  36.     usage ("corrcoef (x, y)");
  37.   endif
  38.  
  39.   if (nargin == 2)
  40.     c = cov (x, y);
  41.     s = std (x)' * std (y);
  42.     retval = c ./ s;
  43.   elseif (nargin == 1)
  44.     c = cov (x);
  45.     s = reshape (sqrt (diag (c)), 1, columns (c));
  46.     retval = c ./ (s' * s);
  47.   endif
  48.  
  49. endfunction
  50.