Free cookie consent management tool by TermsFeed Policy Generator

Changeset 6738


Ignore:
Timestamp:
09/12/11 10:49:20 (13 years ago)
Author:
mkommend
Message:

#1579: Corrected CalculatePearsonsRSquaredOfConstantTest.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/Tests/StatisticCalculatorsTest.cs

    r6184 r6738  
    2020#endregion
    2121
    22 using System;
    2322using System.Collections.Generic;
    2423using System.Linq;
     
    124123        IEnumerable<double> x = from rows in Enumerable.Range(0, n)
    125124                                select testData[rows, c1] * c1Scale;
    126         IEnumerable<double> y = (new List<double>() { 150494407424305.44 })
     125        IEnumerable<double> y = (new List<double>() { 150494407424305.47 })
    127126          .Concat(Enumerable.Repeat(150494407424305.47, n - 1));
    128127        double[] xs = x.ToArray();
Note: See TracChangeset for help on using the changeset viewer.