コード例 #1
0
 public Dendrit(Neuron parParentNeuron, Axon outputFromNeuron)
 {
     this.parentNeuron = parParentNeuron;
     this.connection   = outputFromNeuron;
     this.weight       = outputFromNeuron.getWeight();
     this.activated    = false;
 }
コード例 #2
0
        public Dendrit addDendrit(Axon neuronOutput)
        {
            Dendrit newDendrit = new Dendrit(this, neuronOutput);

            return(newDendrit);
        }
コード例 #3
0
        public Neuron()
        {
            this.processingUnit = new Cell(this);

            this.output = new Axon(this);
        }