Accord.Statistics.Visualizations.Histogram.this C# (CSharp) 메소드

this() 공개 메소드

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