home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / dev / c / math_classes.lha / math_classes / matrix / libmatrix / solve_lumat.cc < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-05  |  100 b   |  8 lines

  1. #include "Matrix.h"
  2.  
  3.  
  4. Matrix solve(const LUmatrix& m1,const Matrix& b)
  5.     {
  6.     return LUsolve(m1,b);
  7.     }
  8.