template<class C>
Definition at line 251 of file Matrix.h. References CxMatrixTem< C >::_nc, CxMatrixTem< C >::_nr, CxMatrixTem< C >::CxVector< C >, and CxMatrixTem< C >::i(). 00252 { 00253 00254 if(c>= _nc || c<0){ 00255 CX_CERR << "getCol: Colnr exceeded number of columns in CxMatrixTem." 00256 << CX_ENDL; 00257 return CxVector<C>(0); 00258 } 00259 00260 CxVector<C> tmp(_nr); 00261 for(int i = 0; i<_nr; i++) 00262 { 00263 tmp[i] = (*this)[i][c] ; 00264 } 00265 return tmp; 00266 00267 }
Here is the call graph for this function:
|