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

  1. %SVD     Singular value decomposition.
  2. %    [U,S,V] = SVD(X) produces a diagonal matrix S, of the same 
  3. %    dimension as X and with nonnegative diagonal elements in
  4. %    decreasing order, and unitary matrices U and V so that
  5. %    X = U*S*V'.
  6. %
  7. %     By itself, SVD(X) returns a vector containing diag(S).
  8. %
  9. %     [U,S,V] = SVD(X,0) produces the "economy size"
  10. %     decomposition. If X is m-by-n with m > n, then only the
  11. %     first n columns of U are computed and S is n-by-n.
  12.  
  13. %    Copyright (c) 1984-93 by The MathWorks, Inc.
  14. %    Built-in function.
  15.