AForge.Neuro.Neuron.Compute C# (CSharp) Method

Compute() public abstract method

Computes output value of neuron.
The actual neuron's output value is determined by inherited class. The output value is also stored in Output property.
public abstract Compute ( double input ) : double
input double Input vector.
return double
        public abstract double Compute( double[] input );
    }