Encog.ML.Data.Specific.BiPolarMLData.this C# (CSharp) Method

this() public method

Allowes indexed access to the data.
public this ( int x ) : double
x int The index.
return double
        public double this[int x]
        {
            get { return BiPolarUtil.Bipolar2double(_data[x]); }
            set { _data[x] = BiPolarUtil.Double2bipolar(value); }
        }