home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume10 / ifp / part01 / fproot / math / linear / L < prev    next >
Encoding:
Text File  |  1987-07-05  |  173 b   |  11 lines

  1. (* L part of LU decomposition of matrix *)
  2. DEF L AS
  3.    IF Singleton THEN #<<1.0>>
  4.    ELSE 
  5.       [
  6.          Li1,
  7.      Aik | [EACH #0 END,L] | apndl
  8.       ] | ApndlCol
  9.    END;
  10.  
  11.