generated from freudenreichan/info2Praktikum-NeuronalesNetz
update changes from intial repo
This commit is contained in:
parent
4702303783
commit
e5e92ad770
14
makefile
14
makefile
@ -15,12 +15,6 @@ endif
|
||||
raylibfolder = ./raylib
|
||||
unityfolder = ./unity
|
||||
|
||||
# --------------------------
|
||||
# Initiales Programm bauen (zum ausprobieren)
|
||||
# --------------------------
|
||||
mnist_initial: $(BINARIES)/libmnist_complete.a
|
||||
$(CC) -o mnist $(BINARIES)/libmnist_complete.a $(BINARIES)/libraylib.a ${LDFLAGS}
|
||||
|
||||
# --------------------------
|
||||
# Selbst implementiertes Programm bauen
|
||||
# --------------------------
|
||||
@ -54,6 +48,14 @@ neuralNetworkTests: neuralNetwork.o matrix.o neuralNetworkTests.c $(unityfolder)
|
||||
imageInputTests: imageInput.o imageInputTests.c $(unityfolder)/unity.c
|
||||
$(CC) $(CFLAGS) -I$(unityfolder) -o runImageInputTests imageInputTests.c imageInput.o $(unityfolder)/unity.c
|
||||
|
||||
|
||||
# --------------------------
|
||||
# Initiales Programm bauen (zum ausprobieren)
|
||||
# --------------------------
|
||||
mnist_initial: $(BINARIES)/libmnist_complete.a
|
||||
$(CC) -o mnist $(BINARIES)/libmnist_complete.a $(BINARIES)/libraylib.a ${LDFLAGS}
|
||||
|
||||
|
||||
# --------------------------
|
||||
# Clean
|
||||
# --------------------------
|
||||
|
||||
6
matrix.c
6
matrix.c
@ -4,6 +4,12 @@
|
||||
|
||||
// TODO Matrix-Funktionen implementieren
|
||||
|
||||
typedef struct Matrix {
|
||||
unsigned int xElement;
|
||||
unsigned int yElement;
|
||||
|
||||
} Matrix;
|
||||
|
||||
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