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

this() public method

Access the data by index.
public this ( int x ) : double
x int The index to access.
return double
        public virtual double this[int x]
        {
            get { return _data[x]; }
            set { _data[x] = value; }
        }