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

  1. #include "Matrix.h"
  2.  
  3.  
  4. Matrix Matrix::getrow (unsigned int ro) const
  5.     {
  6.     Matrix v(1,cols());
  7.     for(unsigned int i=1;i<=cols();i++)
  8.         {
  9.         v(1,i)=(*this)(ro,i);
  10.         }
  11.     return v;
  12.     }
  13.