Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

template<class C>
CxVector<C> CxMatrixTem< C >::getRow ( long  r  )  const [inline]

Definition at line 233 of file Matrix.h.

References CxMatrixTem< C >::_nc, CxMatrixTem< C >::_nr, CxMatrixTem< C >::CxVector< C >, and CxMatrixTem< C >::i().

00234 {
00235 
00236         if(r>= _nr || r<0){
00237         CX_CERR << "getRow: rownr exceeded the number of rows in CxMatrixTem." 
00238                                 << CX_ENDL;
00239         return CxVector<C>(0);
00240     }
00241 
00242         CxVector<C> tmp(_nc);
00243 
00244         for(int i = 0; i<_nc; i++)
00245                 tmp[i] = (*this)[r][i] ;
00246 
00247         return tmp ;
00248 }

Here is the call graph for this function:


Generated on Thu Jan 13 09:13:06 2011 for ImpalaSrc by  doxygen 1.5.1