diff --git a/matrixOp.c b/matrixOp.c index 4861a18..5ad0900 100644 --- a/matrixOp.c +++ b/matrixOp.c @@ -17,7 +17,7 @@ Matrix* CreateMatrixZero(int rows, int cols) { // Erstellt eine Matrix mit Zufallswerten zwischen -100 und 99 Matrix* CreateMatrixRand(int rows, int cols) { - srand(time(NULL)); // Initialisiert Zufallszahlengenerator (Achtung: bei jedem Aufruf neu!) + srand(time(NULL)); // Initialisiert Zufallszahlengenerator Matrix *m = CreateMatrixZero(rows, cols); for (int i = 0; i < rows; i++) { for (int j = 0; j < cols; j++) {