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

  1. #include "Matrix.h"
  2.  
  3.  
  4. Matrix::Matrix()
  5.     {
  6.     r=0;
  7.     c=0;
  8.     vals=0;
  9.     }
  10.