|
CircularWeightedConcentration Method (Double, Double, Double)
|
Computes the Weighted Concentration of the given angles.
Namespace:
Accord.Statistics
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public static double WeightedConcentration(
double[] angles,
double[] weights,
double mean
)
Public Shared Function WeightedConcentration (
angles As Double(),
weights As Double(),
mean As Double
) As Double
Request Example
View SourceParameters
- angles
- Type: SystemDouble
A double array containing the angles in radians. - weights
- Type: SystemDouble
An unit vector containing the importance of each angle
in . The sum of this array elements should add up to 1. - mean
- Type: SystemDouble
The mean of the angles, if already known.
Return Value
Type:
DoubleThe mean of the given angles.
See Also