From c928a8433a6f544b7e90e2dd27757fe193abd613 Mon Sep 17 00:00:00 2001 From: John Neumeier Date: Sun, 16 Nov 2025 17:16:42 +0000 Subject: [PATCH] matrix.h aktualisiert MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit matrix.h hinzugefügt --- matrix.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/matrix.h b/matrix.h index cc640d1..ff77f24 100644 --- a/matrix.h +++ b/matrix.h @@ -6,7 +6,11 @@ typedef float MatrixType; // TODO Matrixtyp definieren - +typedef struct { + MatrixType *buffer; + MatrixType rows; + MatrixType cols; +}Matrix; Matrix createMatrix(unsigned int rows, unsigned int cols); void clearMatrix(Matrix *matrix);