Computes output value of neuron.

Namespace:  AForge.Neuro
Assembly:  AForge.Neuro (in AForge.Neuro.dll) Version: 2.2.5.0 (2.2.5.0)

Syntax

C#
public abstract double Compute(
	double[] input
)

Parameters

input
Type: array< System..::.Double >[]()[]
Input vector.

Return Value

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