Histogram<T>.Add Totals Method
Adds the specified values to the total for each bin in a histogram.
Definition
Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
[ObsoleteAttribute("Use the AddInPlace method instead.")]
public void AddTotals(
Vector<double> values
)
Parameters
Remarks
Use this method to directly add to the totals of all bins in the histogram. The values in values are added to the current bin totals. To replace the current bin totals, use the SetTotals(Vector<Double>) method.
Exceptions
Dimension | The length of values does not equal the number of bins in the histogram. |
Argument | values is null. |