Compute output of the layer. The output vector contains the output of each neuron of the layer.

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

Parameters

input

input of the layer (size must be N_inputs)

Return Value

the output vector (size = N_neurons)

See Also

Layer Class | Layer Members | NeuralNetwork Namespace