Ejemplo n.º 1
0
        public double[] GetDoubleOutputs()
        {
            double[] doubleOutputs = new double[Outputs.Length];

            for (int i = 0; i < Outputs.Length; i++)
            {
                doubleOutputs[i] = Outputs.Get(i) ? 1 : 0;
            }

            return(doubleOutputs);
        }