Esempio n. 1
0
 public Dendrite(INeuronSignal <double> input, INeuronWeight <double> weight) :
     base(input, weight)
 {
 }
Esempio n. 2
0
 protected AbstractDendrite(INeuronSignal <TNeuronDataType> output, INeuronWeight <TNeuronDataType> weight)
 {
     this.Output         = output;
     this.DendriteWeight = weight;
 }