Nn.Neuron.setInput C# (CSharp) Method

setInput() public method

public setInput ( Input input, int position ) : void
input Input
position int
return void
        public void setInput(Input input, int position)
        {
            if( inputs.Count > position)
                inputs[position] = input;
            else
            {
                Debug.Log("setInput: try to set Input in a too high position");
                throw new IndexOutOfRangeException();
            }
        }
        public void setBias(double bias)

Same methods

Neuron::setInput ( double input, int position ) : void