Accord.Statistics.Visualizations.Histogram.this C# (CSharp) Method

this() public method

Gets the Bin values of this Histogram.
public this ( int index ) : int
index int Bin index.
return int
        public int this[int index]
        {
            get { return values[index]; }
            set { values[index] = value; }
        }