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

template<class C>
CxMatrixTem<C> CxMatrixTem< C >::t (  )  const [inline]

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:


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