home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l460 / 2.ddi / DATAFUN.DI$ / CONTENTS.M next >
Encoding:
Text File  |  1993-03-07  |  1.8 KB  |  47 lines

  1. % Data analysis and Fourier transform functions.
  2. %
  3. % Basic operations.
  4. %   max         - Largest component.
  5. %   min         - Smallest component.
  6. %   mean        - Average or mean value.
  7. %   median      - Median value.
  8. %   std         - Standard deviation.
  9. %   sort        - Sort in ascending order. 
  10. %   sum         - Sum of elements.
  11. %   prod        - Product of elements.
  12. %   cumsum      - Cumulative sum of elements.
  13. %   cumprod     - Cumulative product of elements.
  14. %   trapz       - Numerical integration using trapezoidal method.
  15. %
  16. % Finite differences.
  17. %   diff        - Difference function and approximate derivative.
  18. %   gradient    - Approximate gradient.
  19. %   del2        - Five-point discrete Laplacian.
  20. %
  21. % Correlation.
  22. %   corrcoef    - Correlation coefficients.
  23. %   cov         - Covariance matrix.
  24. %   subspace    - Angle between subspaces.
  25. %
  26. % Filtering and convolution.
  27. %   filter      - One-dimensional digital filter.
  28. %   filter2     - Two-dimensional digital filter.
  29. %   conv        - Convolution and polynomial multiplication.
  30. %   conv2       - Two-dimensional convolution.
  31. %   deconv      - Deconvolution and polynomial division.
  32. %
  33. % Fourier transforms.
  34. %   fft         - Discrete Fourier transform.
  35. %   fft2        - Two-dimensional discrete Fourier transform.
  36. %   ifft        - Inverse discrete Fourier transform.
  37. %   ifft2       - Two-dimensional inverse discrete Fourier transform.
  38. %   abs         - Magnitude.
  39. %   angle       - Phase angle.
  40. %   unwrap      - Remove phase angle jumps across 360 degree boundaries.
  41. %   fftshift    - Move zeroth lag to center of spectrum.
  42. %   cplxpair    - Sort numbers into complex conjugate pairs.
  43. %   nextpow2    - Next higher power of 2.
  44.  
  45. %    Copyright (c) 1984-93 by The MathWorks, Inc.
  46.  
  47.