Changeset 14498 for branches/symbreg-factors-2650/HeuristicLab.Problems.DataAnalysis.Views/3.4/FeatureCorrelation
- Timestamp:
- 12/17/16 15:42:19 (8 years ago)
- Location:
- branches/symbreg-factors-2650
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/symbreg-factors-2650
- Property svn:mergeinfo changed
/trunk/sources merged: 14457-14458,14463-14465,14468-14469,14475-14476,14478-14479,14481-14483,14486,14493-14494
- Property svn:mergeinfo changed
-
branches/symbreg-factors-2650/HeuristicLab.Problems.DataAnalysis.Views
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Problems.DataAnalysis.Views merged: 14464,14468-14469,14483,14486
- Property svn:mergeinfo changed
-
branches/symbreg-factors-2650/HeuristicLab.Problems.DataAnalysis.Views/3.4/FeatureCorrelation/FeatureCorrelationCalculator.cs
r14185 r14498 50 50 51 51 IList<string> doubleVariableNames = dataset.DoubleVariables.ToList(); 52 OnlineCalculatorError error = OnlineCalculatorError.None; 52 53 53 int length = doubleVariableNames.Count; 54 54 double[,] elements = new double[length, length]; … … 68 68 var var2 = dataset.GetDoubleValues(doubleVariableNames[j], indices); 69 69 70 OnlineCalculatorError error = OnlineCalculatorError.None; 70 71 if (bwInfo.IgnoreMissingValues) { 71 72 var filtered = FilterNaNValues(var1, var2); … … 78 79 } 79 80 elements[j, i] = elements[i, j]; 80 81 81 }); 82 82 worker.ReportProgress((int)(((double)counter) / length * 100)); 83 83 } 84 84 85 e.Result = elements; 85 86 worker.ReportProgress(100);
Note: See TracChangeset
for help on using the changeset viewer.