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

  1. % Matrix functions - numerical linear algebra.
  2. %
  3. % Matrix analysis.
  4. %   cond        - Matrix condition number.
  5. %   norm        - Matrix or vector norm.
  6. %   rcond       - LINPACK reciprocal condition estimator.
  7. %   rank        - Number of linearly independent rows or columns.
  8. %   det         - Determinant.
  9. %   trace       - Sum of diagonal elements.
  10. %   null        - Null space.
  11. %   orth        - Orthogonalization.
  12. %   rref        - Reduced row echelon form.
  13. %
  14. % Linear equations.
  15. %   \ and /     - Linear equation solution; use "help slash".
  16. %   chol        - Cholesky factorization.
  17. %   lu          - Factors from Gaussian elimination.
  18. %   inv         - Matrix inverse.
  19. %   qr          - Orthogonal-triangular decomposition.
  20. %   qrdelete    - Delete a column from the QR factorization.
  21. %   qrinsert    - Insert a column in the QR factorization.
  22. %   nnls        - Non-negative least-squares.
  23. %   pinv        - Pseudoinverse.
  24. %   lscov       - Least squares in the presence of known covariance.
  25. %
  26. % Eigenvalues and singular values.
  27. %   eig         - Eigenvalues and eigenvectors.
  28. %   poly        - Characteristic polynomial.
  29. %   hess        - Hessenberg form.
  30. %   qz          - Generalized eigenvalues.
  31. %   rsf2csf     - Real block diagonal form to complex diagonal form.
  32. %   cdf2rdf     - Complex diagonal form to real block diagonal form.
  33. %   schur       - Schur decomposition.
  34. %   balance     - Diagonal scaling to improve eigenvalue accuracy.
  35. %   svd         - Singular value decomposition.
  36. %
  37. % Matrix functions.
  38. %   expm        - Matrix exponential.
  39. %   expm1       - M-file implementation of expm.
  40. %   expm2       - Matrix exponential via Taylor series.
  41. %   expm3       - Matrix exponential via eigenvalues and eigenvectors.
  42. %   logm        - Matrix logarithm.
  43. %   sqrtm       - Matrix square root.
  44. %   funm        - Evaluate general matrix function.
  45.  
  46. %    Copyright (c) 1984-93 by The MathWorks, Inc.
  47.  
  48.  
  49.