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

  1. #include "Matrix.h"
  2.  
  3.  
  4. void Matrix::setcol(unsigned int co,Matrix v)
  5.     {
  6.     if(v.cols()!=1) error("Column vector required");
  7.     for(unsigned int i=1;i<=rows();i++)
  8.         {
  9.         (*this)(i,co)=v(i,1);
  10.         }
  11.     }
  12.