Ejemplo n.º 1
0
 public Dendrit(Neuron parParentNeuron, Axon outputFromNeuron)
 {
     this.parentNeuron = parParentNeuron;
     this.connection   = outputFromNeuron;
     this.weight       = outputFromNeuron.getWeight();
     this.activated    = false;
 }
Ejemplo n.º 2
0
        public Dendrit addDendrit(Axon neuronOutput)
        {
            Dendrit newDendrit = new Dendrit(this, neuronOutput);

            return(newDendrit);
        }
Ejemplo n.º 3
0
        public Neuron()
        {
            this.processingUnit = new Cell(this);

            this.output = new Axon(this);
        }