Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/02/13 13:48:55 (11 years ago)
Author:
ascheibe
Message:

#2031 improved sample size estimation and some minor improvements

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/BonferroniHolm.cs

    r9950 r10017  
    2626namespace HeuristicLab.Analysis.Statistics {
    2727  public static class BonferroniHolm {
     28    /// <summary>
     29    /// Based on David Groppe's MATLAB implementation
     30    /// (BSD Licensed, see
     31    /// http://www.mathworks.com/matlabcentral/fileexchange/28303-bonferroni-holm-correction-for-multiple-comparisons)
     32    /// </summary>
    2833    public static double[] Calculate(double globalAlpha, double[] pValues, out bool[] h) {
    2934      int k = pValues.Length;
Note: See TracChangeset for help on using the changeset viewer.