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

BasicMLData() public method

Construct this object with blank data and a specified size.
public BasicMLData ( int size ) : System
size int The amount of data to store.
return System
        public BasicMLData(int size)
        {
            _data = new double[size];
        }

Same methods

BasicMLData::BasicMLData ( double d ) : System