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

getInput() 공개 메소드

public getInput ( int position ) : double
position int
리턴 double
        public double getInput(int position)
        {
            if (inputs.Count > position)
                return inputs[position].input;
            else
            {
                Debug.Log("getInput :try to get input in a too high position");
                throw new IndexOutOfRangeException();
            }
        }
        public double getWeigth(int position)