diff --git a/matrix.h b/matrix.h index 915677c..f0fcf51 100644 --- a/matrix.h +++ b/matrix.h @@ -7,9 +7,9 @@ typedef float MatrixType; // TODO Matrixtyp definieren typedef struct { - MatrixType Zeilen; - MatrixType Spalten; - MatrixType **mzgr; + MatrixType rows; + MatrixType cols; + MatrixType *buffer; }Matrix;