Compare commits

...

1 Commits

Author SHA1 Message Date
silvana884
5f90b74937 Matrixtyp definiert 2025-11-13 21:16:31 +01:00

View File

@ -6,10 +6,6 @@
typedef float MatrixType; typedef float MatrixType;
// TODO Matrixtyp definieren // TODO Matrixtyp definieren
typedef struct{
unsigned int rows;
unsigned int cols;
} Matrixtyp;
Matrix createMatrix(unsigned int rows, unsigned int cols); Matrix createMatrix(unsigned int rows, unsigned int cols);