Accord.Statistics.Circular.WeightedConcentration C# (CSharp) Method

WeightedConcentration() public static method

Computes the Weighted Concentration of the given angles.
public static WeightedConcentration ( double angles, double weights ) : double
angles double A double array containing the angles in radians.
weights double An unit vector containing the importance of each angle /// in . The sum of this array elements should add up to 1.
return double
        public static double WeightedConcentration(double[] angles, double[] weights)
        {
            return WeightedConcentration(angles, weights, WeightedMean(angles, weights));
        }

Same methods

Circular::WeightedConcentration ( double angles, double weights, double mean ) : double