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

  1. %QR      Orthogonal-triangular decomposition.
  2. %     [Q,R] = QR(X) produces an upper triangular matrix R of
  3. %     the same dimension as X and a unitary matrix Q so that
  4. %     X = Q*R.
  5. %     [Q,R,E] = QR(X) produces a permutation matrix E , an
  6. %     upper triangular R with decreasing diagonal elements and
  7. %     a unitary Q so that X*E = Q*R.
  8. %     By itself, QR(X) returns the output of LINPACK'S ZQRDC
  9. %     routine.  TRIU(QR(X)) is R.
  10. %
  11. %    See also QRDELETE, QRINSERT.
  12.  
  13. %    Copyright (c) 1984-93 by The MathWorks, Inc.
  14. %    Built-in function.
  15.