template<class C>
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:
|