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

  1. % Elementary matrices and matrix manipulation.
  2. %
  3. % Elementary matrices.
  4. %   zeros       - Zeros matrix.
  5. %   ones        - Ones matrix.
  6. %   eye         - Identity matrix.
  7. %   rand        - Uniformly distributed random numbers.
  8. %   randn       - Normally distributed random numbers.
  9. %   linspace    - Linearly spaced vector.
  10. %   logspace    - Logarithmically spaced vector.
  11. %   meshgrid    - X and Y arrays for 3-D plots.
  12. %   :           - Regularly spaced vector.
  13. %
  14. % Special variables and constants.
  15. %   ans         - Most recent answer.
  16. %   eps         - Floating point relative accuracy.
  17. %   realmax     - Largest floating point number.
  18. %   realmin     - Smallest positive floating point number.
  19. %   pi          - 3.1415926535897....
  20. %   i, j        - Imaginary unit.
  21. %   inf         - Infinity.
  22. %   NaN         - Not-a-Number.
  23. %   flops       - Count of floating point operations.
  24. %   nargin      - Number of function input arguments.
  25. %   nargout     - Number of function output arguments.
  26. %   computer    - Computer type.
  27. %   isieee      - True for computers with IEEE arithmetic.
  28. %   why         - Succinct answer.
  29. %   version     - MATLAB version number.
  30. %
  31. % Time and dates.
  32. %   clock       - Wall clock.
  33. %   cputime     - Elapsed CPU time.
  34. %   date        - Calendar.
  35. %   etime       - Elapsed time function.
  36. %   tic, toc    - Stopwatch timer functions.
  37. %
  38. % Matrix manipulation.
  39. %   diag        - Create or extract diagonals.
  40. %   fliplr      - Flip matrix in the left/right direction.
  41. %   flipud      - Flip matrix in the up/down direction.
  42. %   reshape     - Change size.
  43. %   rot90       - Rotate matrix 90 degrees.
  44. %   tril        - Extract lower triangular part.
  45. %   triu        - Extract upper triangular part.
  46. %   :           - Index into matrix, rearrange matrix.
  47. %
  48.  
  49. %    Copyright (c) 1984-93 by The MathWorks, Inc.
  50.