- Timestamp:
- 10/23/12 16:29:21 (11 years ago)
- Location:
- branches/DataAnalysisCSVImport/HeuristicLab.Problems.DataAnalysis
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataAnalysisCSVImport/HeuristicLab.Problems.DataAnalysis
- Property svn:mergeinfo changed
-
branches/DataAnalysisCSVImport/HeuristicLab.Problems.DataAnalysis/3.4/Dataset.cs
r7921 r8842 193 193 if (values == null) throw new ArgumentException("The varialbe " + variableName + " is not a double variable."); 194 194 195 foreach (int index in rows) 196 yield return values[index]; 195 return rows.Select(index => values[index]); 197 196 } 198 197
Note: See TracChangeset
for help on using the changeset viewer.