Ejemplo n.º 1
0
 public NNNeuron(string str, int icount)
 {
     label         = str;
     output        = 0.0;
     m_Connections = new NNConnectionList(icount);
     Initialize();
 }
Ejemplo n.º 2
0
 public NNNeuron()
 {
     Initialize();
     label         = "";
     output        = 0.0;
     m_Connections = new NNConnectionList();
 }