Remove unused comment

This commit is contained in:
Simon Giesel 2019-04-22 17:29:24 +02:00
parent 792fc2f410
commit 18029a966a
2 changed files with 0 additions and 1 deletions

Binary file not shown.

View file

@ -143,7 +143,6 @@ public class App {
double[][] c = new double[a.length][a.length];
for (int i = 0; i < a.length; i++)
for (int ii = 0; ii < a[i].length; ii++)
// a[i][ii] = a[i][ii] * b[ii][i];
for (int iii = 0; iii < a[i].length; iii++)
c[i][ii] = a[i][iii] * b[iii][ii] + c[i][ii];
return c;