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

Add() public method

Adds one histogram from the other, storing results in a new histogram, without changing the current instance.
public Add ( Histogram histogram ) : Histogram
histogram Histogram The histogram whose bin values will be added.
return Histogram
        public Histogram Add(Histogram histogram)
        {
            return Add(histogram.Values);
        }

Same methods

Histogram::Add ( int histogram ) : Histogram