update changes from intial repo

This commit is contained in:
D2A62006 2025-11-12 11:38:16 +01:00
parent 4702303783
commit e5e92ad770
3 changed files with 33 additions and 6 deletions

View File

@ -15,12 +15,6 @@ endif
raylibfolder = ./raylib raylibfolder = ./raylib
unityfolder = ./unity 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 # Selbst implementiertes Programm bauen
# -------------------------- # --------------------------
@ -54,6 +48,14 @@ neuralNetworkTests: neuralNetwork.o matrix.o neuralNetworkTests.c $(unityfolder)
imageInputTests: imageInput.o imageInputTests.c $(unityfolder)/unity.c imageInputTests: imageInput.o imageInputTests.c $(unityfolder)/unity.c
$(CC) $(CFLAGS) -I$(unityfolder) -o runImageInputTests imageInputTests.c imageInput.o $(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 # Clean
# -------------------------- # --------------------------

View File

@ -4,6 +4,12 @@
// TODO Matrix-Funktionen implementieren // TODO Matrix-Funktionen implementieren
typedef struct Matrix {
unsigned int xElement;
unsigned int yElement;
} Matrix;
Matrix createMatrix(unsigned int rows, unsigned int cols) 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