Nn.Neuron.setInput C# (CSharp) 메소드

setInput() 공개 메소드

public setInput ( Input input, int position ) : void
input Input
position int
리턴 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