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

  1. %SCHUR    Schur decomposition.
  2. %    [U,T] = SCHUR(X) produces a Schur matrix T and a unitary
  3. %    matrix U so that X = U*T*U' and U'*U = EYE(U).
  4. %     By itself, SCHUR(X) returns T.
  5. %     If X is complex, the Complex Schur Form is returned in matrix T.
  6. %     The Complex Schur Form is upper triangular with the eigenvalues
  7. %     of X on the diagonal.
  8. %     If X is real, the Real Schur Form is returned.  The Real Schur
  9. %     Form has the real eigenvalues on the diagonal and the complex
  10. %     eigenvalues in 2-by-2 blocks on the diagonal.
  11. %     See RSF2CSF to convert from Real to Complex Schur form.
  12.  
  13. %    Copyright (c) 1984-93 by The MathWorks, Inc.
  14. %    Built-in function.
  15.