Merge pull request 'JD_Branch' (#1) from JD_Branch into main

Reviewed-on: #1
This commit is contained in:
Jochen Duernberger 2025-11-13 13:48:40 +00:00
commit 0e9c8d3e1b
2 changed files with 10 additions and 0 deletions

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