added todo, defined outline for matrix struct

This commit is contained in:
= 2025-11-06 16:40:14 +01:00
parent 4154897082
commit 1cdf15a0eb
2 changed files with 23 additions and 0 deletions

View File

@ -4,6 +4,10 @@
// TODO Matrix-Funktionen implementieren
typedef struct Matrix {
} Matrix;
Matrix createMatrix(unsigned int rows, unsigned int cols)
{

19
todo.md Normal file
View File

@ -0,0 +1,19 @@
## todo
### Matrix
- Struct Matrix
- Rows, Columns, Matrix [][]
- RowIndex, ColumnIndex Unsigned Int
- MatrixType
- Storen von Matritzen (array an matritzen?)
- Übergabe von Matrix.h
#### Methoden
- createMatrix
- clearMatrix
- setMatrixAt
- getMatrixAt
- add --> Markus
- multiply --> Markus
### imageInput
- To be discussed
### neuronales Netz
- to be discussed