From 55fe58d69aa1c578477097c94421b43f85176e61 Mon Sep 17 00:00:00 2001 From: Kristin Date: Tue, 11 Nov 2025 09:06:00 +0100 Subject: [PATCH] =?UTF-8?q?typedef=20struct=20f=C3=BCr=20Matrix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- matrix.h | 1 + 1 file changed, 1 insertion(+) diff --git a/matrix.h b/matrix.h index cc640d1..a00f419 100644 --- a/matrix.h +++ b/matrix.h @@ -8,6 +8,7 @@ typedef float MatrixType; // TODO Matrixtyp definieren + Matrix createMatrix(unsigned int rows, unsigned int cols); void clearMatrix(Matrix *matrix); void setMatrixAt(MatrixType value, Matrix matrix, unsigned int rowIdx, unsigned int colIdx);