diff --git a/matrix.c b/matrix.c index 728f8f6..dab5873 100644 --- a/matrix.c +++ b/matrix.c @@ -52,8 +52,6 @@ MatrixType getMatrixAt(const Matrix matrix, unsigned int rowIdx, unsigned int co Matrix add(const Matrix matrix1, const Matrix matrix2) { - // Needed: rows/Zeilen, collums/Spalten - // test, if two matrix has exact size if (matrix1.rows != matrix2.rows || matrix1.cols != matrix2.cols)