diff --git a/matrix.h b/matrix.h index cc640d1..019617a 100644 --- a/matrix.h +++ b/matrix.h @@ -7,6 +7,11 @@ typedef float MatrixType; // TODO Matrixtyp definieren +typedef struct { + unsigned int rows; + unsigned int cols; + float *buffer; +} Matrix; Matrix createMatrix(unsigned int rows, unsigned int cols); void clearMatrix(Matrix *matrix);