template<class C>
Definition at line 345 of file Matrix.h. References CxMatrixTem< C >::i(), CxMatrixTem< C >::nCol(), and CxMatrixTem< C >::nRow(). Referenced by CxMatrixTem< C >::CxMatrixTem(), CxMatrixTem< C >::operator *(), CxMatrixTem< C >::operator+(), and CxMatrixTem< C >::operator=(). 00346 { 00347 CxMatrixTem<C> m(nCol(), nRow()); 00348 int i, j; 00349 for (i=0 ; i<nRow() ; i++) 00350 for (j=0 ; j<nCol() ; j++) 00351 m[j][i] = (*this)[i][j]; 00352 return m; 00353 }
Here is the call graph for this function:
|