AForge.Math.ContinuousHistogram.ContinuousHistogram C# (CSharp) Method

ContinuousHistogram() public method

Initializes a new instance of the ContinuousHistogram class.
Values of the integer array are treated as total amount of hits on the corresponding subranges, which are calculated by splitting the specified range into required amount of consequent ranges (see ContinuousHistogram class description for more information).
public ContinuousHistogram ( int values, AForge.Math.Range range ) : System
values int Values of the histogram.
range AForge.Math.Range Range of random values.
return System
        public ContinuousHistogram( int[] values, Range range )
        {
            this.values = values;
            this.range  = range;

            Update( );
        }