Note: This API is now obsolete.
Adds the specified values to the total for each bin in a histogram.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
[ObsoleteAttribute("Use the AddInPlace method instead.")]
public void AddTotals(
Vector<double> values
)
<ObsoleteAttribute("Use the AddInPlace method instead.")>
Public Sub AddTotals (
values As Vector(Of Double)
)
public:
[ObsoleteAttribute(L"Use the AddInPlace method instead.")]
void AddTotals(
Vector<double>^ values
)
[<ObsoleteAttribute("Use the AddInPlace method instead.")>]
member AddTotals :
values : Vector<float> -> unit
Parameters
- values
- Type: Extreme.MathematicsVectorDouble
A Double array containing the total increment for each bin.
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(VectorDouble) method.
Reference