Free cookie consent management tool by TermsFeed Policy Generator

Changeset 132


Ignore:
Timestamp:
04/18/08 15:15:06 (17 years ago)
Author:
gkronber
Message:

added methods for GetRange and GetMean that use the full set of rows instead of start and end points (semantically coupled with r128) (ticket #29)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.DataAnalysis/Dataset.cs

    r2 r132  
    196196    }
    197197
     198    public double GetMean(int column) {
     199      return GetMean(column, 0, Rows-1);
     200    }
    198201
    199202    // return value of GetMean should be memoized because it is called repeatedly in Evaluators
     
    232235    }
    233236
     237    public double GetRange(int column) {
     238      return GetRange(column, 0, Rows-1);
     239    }
     240
    234241    // return value of GetRange should be memoized because it is called repeatedly in Evaluators
    235242    public double GetRange(int column, int from, int to) {
Note: See TracChangeset for help on using the changeset viewer.