/// <summary> /// Estimates a new von-Mises distribution from a given set of angles. /// </summary> /// public static VonMisesDistribution Estimate(double[] angles, double[] weights, VonMisesOptions options) { VonMisesDistribution vonMises = new VonMisesDistribution(); vonMises.Fit(angles, weights, options); return vonMises; }
/// <summary> /// Estimates a new von-Mises distribution from a given set of angles. /// </summary> /// public static VonMisesDistribution Estimate(double[] angles, VonMisesOptions options) { return Estimate(angles, null, options); }