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

Add() 공개 메소드

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.
리턴 Histogram
        public Histogram Add(Histogram histogram)
        {
            return Add(histogram.Values);
        }

Same methods

Histogram::Add ( int histogram ) : Histogram