I'm a developer at C++ Shanghai team. I'm interested in everything related to C++
April 2009 - Posts
-
Matrix multiplication is common and the algorithm is easy to implementation. Here is one example: Version 1: template < typename T> void SeqMatrixMult1( int size, T** m1, T** m2, T** result) { for ( int i = 0; i < size; i++) { for ( int j = 0; Read More...
|