Click or drag to resize
Accord.NET (logo)

NeuronCompute Method

Computes output value of neuron.

Namespace:  Accord.Neuro
Assembly:  Accord.Neuro (in Accord.Neuro.dll) Version: 3.8.0
Syntax
public abstract double Compute(
	double[] input
)
Request Example View Source

Parameters

input
Type: SystemDouble
Input vector.

Return Value

Type: Double
Returns neuron's output value.
Remarks
The actual neuron's output value is determined by inherited class. The output value is also stored in Output property.
See Also