Histogram<T>.GetTotals Method

Note: This API is now obsolete.
Returns an array containing the totals in each bin in a histogram.

Definition

Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
[ObsoleteAttribute("The histogram is already a vector of double.")]
public Vector<double> GetTotals()

Return Value

Vector<Double>
A Double array containing the totals in each histogram bin.

Remarks

This method always returns a new array instance. It should not be used inside a loop.

See Also