matrix.h buffer tausch

This commit is contained in:
Thomas Rauh 2025-11-11 18:57:35 +01:00
parent 12d667e188
commit 37865fb304

View File

@ -7,9 +7,9 @@ typedef float MatrixType;
// TODO Matrixtyp definieren
typedef struct{
MatrixType* buffer;
unsigned int rows;
unsigned int cols;
MatrixType* buffer;
} Matrix;
Matrix createMatrix(unsigned int rows, unsigned int cols);