diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..082b194 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "makefile.configureOnOpen": false +} \ No newline at end of file diff --git a/matrix.h b/matrix.h index cc640d1..132c143 100644 --- a/matrix.h +++ b/matrix.h @@ -6,6 +6,13 @@ typedef float MatrixType; // TODO Matrixtyp definieren +typedef struct { + unsigned int rows; + unsigned int cols; + MatrixType *buffer; +} Matrix; +// ***************************************************** + Matrix createMatrix(unsigned int rows, unsigned int cols);