Nn.Neuron.getAllInput C# (CSharp) Method

getAllInput() public method

public getAllInput ( ) : List
return List
        public List<double> getAllInput()
        {
            List<double> tmp_input = new List<double>();
            for (int i = 0; i < inputs.Count; i++)
            {
                tmp_input.Add(inputs[i].input);
            }
            return tmp_input;
        }
        public int getNbWeigths()