matrix.h aktualisiert

buffer als einfachen Zeiger und Änderung der Parameterbezeichnungen
This commit is contained in:
John Neumeier 2025-11-16 10:06:08 +00:00
parent f6a37b3749
commit 54fb86f803

View File

@ -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;