- Timestamp:
- 01/14/17 19:14:38 (8 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 14468-14469
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.DataAnalysis.Views
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Problems.DataAnalysis.Views merged: 14468-14469
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.DataAnalysis.Views/3.4/FeatureCorrelation/FeatureCorrelationCalculator.cs
r14186 r14567 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.