Merge remote-tracking branch 'origin/Development' into Development

This commit is contained in:
Jakob Stornig 2023-09-19 12:51:34 +02:00
commit 29a72f2ba0
2 changed files with 10 additions and 0 deletions

3
neuronal_network.cpp Normal file
View file

@ -0,0 +1,3 @@
//
// Created by danie on 19.09.2023.
//

7
neuronal_network.h Normal file
View file

@ -0,0 +1,7 @@
#pragma once
typedef struct {
Matrix* input;
Matrix* output;
} Neuronal_Network;