generated from freudenreichan/info2Praktikum-NeuronalesNetz
added todo, defined outline for matrix struct
This commit is contained in:
parent
4154897082
commit
1cdf15a0eb
4
matrix.c
4
matrix.c
@ -4,6 +4,10 @@
|
|||||||
|
|
||||||
// TODO Matrix-Funktionen implementieren
|
// TODO Matrix-Funktionen implementieren
|
||||||
|
|
||||||
|
typedef struct Matrix {
|
||||||
|
|
||||||
|
} Matrix;
|
||||||
|
|
||||||
Matrix createMatrix(unsigned int rows, unsigned int cols)
|
Matrix createMatrix(unsigned int rows, unsigned int cols)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|||||||
19
todo.md
Normal file
19
todo.md
Normal 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
|
||||||
Loading…
x
Reference in New Issue
Block a user