Note: This API is now obsolete.
Sets 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 CopyTo method of the values vector on the histogram instead.")]
public void SetTotals(
Vector<double> values
)
<ObsoleteAttribute("Use the CopyTo method of the values vector on the histogram instead.")>
Public Sub SetTotals (
values As Vector(Of Double)
)
public:
[ObsoleteAttribute(L"Use the CopyTo method of the values vector on the histogram instead.")]
void SetTotals(
Vector<double>^ values
)
[<ObsoleteAttribute("Use the CopyTo method of the values vector on the histogram instead.")>]
member SetTotals :
values : Vector<float> -> unit
Parameters
- values
- Type: Extreme.MathematicsVectorDouble
A Double array containing the total for each bin.
Use this method to directly set the totals of all bins in the histogram.
The values in values are copied into the bin totals.
To add to the current totals, use the AddTotals(VectorDouble) method.
To set all totals to zero, use the Clear method.
Reference