Remove unused comment
This commit is contained in:
parent
792fc2f410
commit
18029a966a
2 changed files with 0 additions and 1 deletions
Binary file not shown.
|
@ -143,7 +143,6 @@ public class App {
|
||||||
double[][] c = new double[a.length][a.length];
|
double[][] c = new double[a.length][a.length];
|
||||||
for (int i = 0; i < a.length; i++)
|
for (int i = 0; i < a.length; i++)
|
||||||
for (int ii = 0; ii < a[i].length; ii++)
|
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++)
|
for (int iii = 0; iii < a[i].length; iii++)
|
||||||
c[i][ii] = a[i][iii] * b[iii][ii] + c[i][ii];
|
c[i][ii] = a[i][iii] * b[iii][ii] + c[i][ii];
|
||||||
return c;
|
return c;
|
||||||
|
|
Loading…
Reference in a new issue