| So when you break it down you want to do multiplication elements from already existing elements?
res.get(i) += matrix1.get(i).get(j) * matrix2.get(j).get(i);
Not positive in Java but maybe res[i] += matrix1[i][j] * matrix2[j][i];
Is that the gyst of your equation?
Last edited by ccoonen : 08-14-2007 at 11:19 PM.
|