Encog.App.Analyst.CSV.Basic.BaseCachedColumn.Allocate C# (CSharp) Method

Allocate() public method

Allocate enough space for this column.
public Allocate ( int length ) : void
length int
return void
        public void Allocate(int length)
        {
            _data = new double[length];
        }
    }