Changeset 3855 for trunk/sources/HeuristicLab.Problems.DataAnalysis
- Timestamp:
- 05/20/10 14:57:11 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.3/SupportVectorMachine/SupportVectorMachineUtil.cs
r3842 r3855 46 46 for (int row = 0; row < rowCount; row++) { 47 47 tempRow = new List<SVM.Node>(); 48 foreach (var inputVariable in problemData.InputVariables ) {49 int col = problemData.Dataset.GetVariableIndex(inputVariable.Value );48 foreach (var inputVariable in problemData.InputVariables.CheckedItems) { 49 int col = problemData.Dataset.GetVariableIndex(inputVariable.Value.Value); 50 50 double value = problemData.Dataset[start + row, col]; 51 51 if (!double.IsNaN(value)) {
Note: See TracChangeset
for help on using the changeset viewer.