Ejemplo n.º 1
0
 public float GetWeigth(Neuron toNeuron)
 {
     return(_weights[toNeuron]);
 }
Ejemplo n.º 2
0
 public void SetWeigth(Neuron toNeuron, float weigth)
 {
     _weights[toNeuron] = weigth;
 }
Ejemplo n.º 3
0
 public float WeightedCurrenValue(Neuron toNeuron)
 {
     return(_weights[toNeuron] * Value);
 }