home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / MISC / IFP05.ZIP / FPMATH.EXE / LINEAR.EXE / %DOC < prev    next >
Encoding:
Text File  |  1980-01-01  |  378 b   |  14 lines

  1. This directory contains functions for linear matrix manipulation.
  2. In particular, it contains L and U, which take the lower and upper 
  3. parts of the LU decomposition of a matrix.  To test it, try:
  4.  
  5.         show 0 : A | [L,U]
  6.  
  7. which will decompose matrix A.  The two parts may be multiplied back
  8. together, i.e.
  9.  
  10.         show 0 : A | [L,U] | MatMul
  11.  
  12. should return A.
  13. 
  14.