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

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