Free cookie consent management tool by TermsFeed Policy Generator

Changeset 9398


Ignore:
Timestamp:
04/26/13 15:46:10 (11 years ago)
Author:
ascheibe
Message:

#2031 fixed a bug in the correlation view

File:
1 edited

Legend:

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

    r9383 r9398  
    206206          || resultVals.Contains(double.PositiveInfinity)
    207207          || resultRowVals.Contains(double.NegativeInfinity)
    208           || resultRowVals.Contains(double.PositiveInfinity)) {
     208          || resultRowVals.Contains(double.PositiveInfinity)
     209          || resultRowVals.Count != resultVals.Count) {
    209210          dt[j, 0] = double.NaN;
    210211          dt[j++, 1] = double.NaN;
Note: See TracChangeset for help on using the changeset viewer.