Encog.ML.Data.Basic.BasicMLData.BasicMLData C# (CSharp) Method

BasicMLData() public method

Construct this object with the specified data.
public BasicMLData ( double d ) : System
d double The data to construct this object with.
return System
        public BasicMLData(double[] d)
            : this(d.Length)
        {
            for (int i = 0; i < d.Length; i++)
            {
                _data[i] = d[i];
            }
        }

Same methods

BasicMLData::BasicMLData ( int size ) : System