struct Matrix functions?
Working with C on ms visual studio2005:
Is there a way i can multiply 2 matrices (dimensions of NxM) without having to do dot product?
can anyone post an example source code?
here are two matrices for example:
set A: (3x3)
1 -5 6
3 5 -7
9 8 4
set B: (3x3)
2 -3 4
-8 7 5
6 1 9
|