兩層感知器網絡實現異或問題

#include <stdio.h> #include <stdlib.h> //樣例結構體 struct sample { int A; int B; int Classs; }; //f函數 double f(double *weight,int A,int B) { return weight[0]+weight[1]*A+weight[2]*B; } //感知器函數 int sgn
相關文章
相關標籤/搜索