adapt matrix struct to existing tests

This commit is contained in:
Simon Wiesend 2025-11-25 13:33:20 +01:00
parent 7ea80137b0
commit 633ee723f4
Signed by untrusted user who does not match committer: wiesendsi102436
GPG Key ID: C18A833054142CF0

View File

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