push iniziale

This commit is contained in:
2025-01-24 17:45:57 +01:00
parent dc174d34f2
commit 18ee9bd634
2 changed files with 14 additions and 0 deletions

0
layer_singolo.c Normal file
View File

14
percettrone.c Normal file
View File

@@ -0,0 +1,14 @@
#include <stdlib.h>;
#include <time.h>;
struct struttura_percettrone {
double w1;
double w2;
double bias;
double lre;
};
typedef struct struttura_percettrone Percettrone;
void creaPercettrone() {
}