home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / dev / c / math_classes.lha / math_classes / matrix / libmatrix / mat_getcol.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::getcol (unsigned int co) const
  5.     {
  6.     Matrix v(rows(),1);
  7.     for(unsigned int i=1;i<=rows();i++)
  8.         {
  9.         v(i,1)=(*this)(i,co);
  10.         }
  11.     return v;
  12.     }
  13.