AlgoAnim: Matrixgenerator dimensions-bug behoben

This commit is contained in:
M.Scholz 2012-06-20 16:21:29 +02:00
parent 9069273211
commit 60e5ceb376
4 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -196,7 +196,7 @@ public class MatrixGenerator implements Generator {
//generate result matrix
int[][] result = new int[matrixA.length][matrixA[0].length];
int[][] result = new int[matrixB[0].length][matrixA.length];
//fill result[][] with zeros
for(int i = 0; i < result.length; i++){
for(int j = 0; j < result[i].length; j++){