home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21eb.zip / octave / SCRIPTS.ZIP / scripts.fat / signal / autocor.m < prev    next >
Text File  |  1999-04-29  |  1KB  |  45 lines

  1. ## Copyright (C) 1995, 1996, 1997  Friedrich Leisch
  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:  autocor (X [, h])
  18. ## 
  19. ## returns the autocorrelations from lag 0 to h of vector X.
  20. ## If h is omitted, all autocorrelations are computed.
  21. ## If X is a matrix, the autocorrelations of every single column are
  22. ## computed. 
  23.   
  24. ## Author:  FL <Friedrich.Leisch@ci.tuwien.ac.at>
  25. ## Description:  Compute autocorrelations
  26.   
  27. function retval = autocor (X, h)
  28.   
  29.   if (nargin == 1)
  30.     retval = autocov (X);
  31.   elseif (nargin == 2)
  32.     retval = autocov (X, h);
  33.   else
  34.     usage ("autocor (X [, h])");    
  35.   endif
  36.   
  37.   if (min (retval (1,:)) != 0)
  38.     retval = retval ./ ( ones (rows (retval), 1) * retval(1, :) );
  39.   endif
  40.   
  41. endfunction
  42.     
  43.  
  44.   
  45.