main #3

Merged
muellermo100295 merged 6 commits from main into MM_Branch 2025-11-20 14:04:27 +00:00
2 changed files with 10 additions and 0 deletions
Showing only changes of commit 0e9c8d3e1b - Show all commits

3
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,3 @@
{
"makefile.configureOnOpen": false
}

View File

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