- Timestamp:
- 02/17/13 17:18:01 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/Dataset.cs
r8798 r9217 191 191 throw new ArgumentException("The variable " + variableName + " does not exist in the dataset."); 192 192 List<double> values = list as List<double>; 193 if (values == null) throw new ArgumentException("The varia lbe " + variableName + " is not a double variable.");193 if (values == null) throw new ArgumentException("The variable " + variableName + " is not a double variable."); 194 194 195 195 return rows.Select(index => values[index]);
Note: See TracChangeset
for help on using the changeset viewer.