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

  1. #include "Matrix.h"
  2.  
  3.  
  4. Matrix getp(const LUmatrix& m)
  5.     {
  6.     Matrix a(m.p);
  7.     return a;
  8.     }
  9.