Changeset 6738
- Timestamp:
- 09/12/11 10:49:20 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/Tests/StatisticCalculatorsTest.cs
r6184 r6738 20 20 #endregion 21 21 22 using System;23 22 using System.Collections.Generic; 24 23 using System.Linq; … … 124 123 IEnumerable<double> x = from rows in Enumerable.Range(0, n) 125 124 select testData[rows, c1] * c1Scale; 126 IEnumerable<double> y = (new List<double>() { 150494407424305.4 4})125 IEnumerable<double> y = (new List<double>() { 150494407424305.47 }) 127 126 .Concat(Enumerable.Repeat(150494407424305.47, n - 1)); 128 127 double[] xs = x.ToArray();
Note: See TracChangeset
for help on using the changeset viewer.