AForge.Neuro.Neuron.Compute C# (CSharp) 메소드

Compute() 공개 추상적인 메소드

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.
리턴 double
        public abstract double Compute( double[] input );
    }