Compute the output of the neurone

[Visual Basic]
Public Function ComputeOutput( _
   ByVal input As Single() _
) As Single
[C#]
public float ComputeOutput(
   float[] input
);

Parameters

input

The input vector

Return Value

The output value of the neuron ( =f(ws) )

See Also

Neuron Class | Neuron Members | NeuralNetwork Namespace