Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/13/15 20:54:47 (8 years ago)
Author:
gkronber
Message:

#2488: merged r13025:13026 and r13064 from trunk to stable branch

Location:
stable
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Common/3.3/EnumerableStatisticExtensions.cs

    r12009 r13148  
    2222using System;
    2323using System.Collections.Generic;
     24using System.Diagnostics.Contracts;
    2425using System.Linq;
    2526
     
    4445      } else {
    4546        return (valuesArr[(n / 2) - 1] + valuesArr[n / 2]) / 2.0;
     47      }
     48    }
     49
     50    /// <summary>
     51    /// Calculates the alpha-quantile element of the enumeration.
     52    /// </summary>
     53    /// <param name="values"></param>
     54    /// <returns></returns>
     55    public static double Quantile(this IEnumerable<double> values, double alpha) {
     56      Contract.Assert(alpha > 0 && alpha < 1);
     57      // iterate only once
     58      double[] valuesArr = values.ToArray();
     59      int n = valuesArr.Length;
     60      if (n == 0) throw new InvalidOperationException("Enumeration contains no elements.");
     61
     62      Array.Sort(valuesArr);
     63      //  starts at 0
     64
     65      // return the element at Math.Ceiling (if n*alpha is fractional) or the average of two elements if n*alpha is integer.
     66      var pos = n * alpha;
     67      Contract.Assert(pos >= 0);
     68      Contract.Assert(pos < n);
     69      bool isInteger = Math.Round(pos).IsAlmost(pos);
     70      if (isInteger) {
     71        return 0.5 * (valuesArr[(int)pos - 1] + valuesArr[(int)pos]);
     72      } else {
     73        return valuesArr[(int)Math.Ceiling(pos) - 1];
    4674      }
    4775    }
Note: See TracChangeset for help on using the changeset viewer.