Encog.Engine.Data.BasicEngineData.BasicEngineData C# (CSharp) Method

BasicEngineData() public method

Construct a BasicNeuralDataPair class with the specified input and ideal values.
public BasicEngineData ( double input, double ideal ) : System
input double The input to the neural network.
ideal double The expected results from the neural network.
return System
        public BasicEngineData(double[] input, double[] ideal)
        {
            this.input = input;
            this.ideal = ideal;
        }

Same methods

BasicEngineData::BasicEngineData ( double input ) : System