From 89e99abf8e71c904e1d88ff4cfc0201aba8926ce Mon Sep 17 00:00:00 2001 From: maxgrf Date: Sat, 15 Nov 2025 03:51:18 +0100 Subject: [PATCH] matrix.h Matrxtyp definiert --- matrix.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/matrix.h b/matrix.h index cc640d1..ad9b2c6 100644 --- a/matrix.h +++ b/matrix.h @@ -6,6 +6,11 @@ typedef float MatrixType; // TODO Matrixtyp definieren +typedef struct { + MatrixType *buffer; + unsigned int rows; + unsigned int cols; +} Matrix; Matrix createMatrix(unsigned int rows, unsigned int cols);