- Timestamp:
- 04/15/11 14:54:43 (14 years ago)
- Location:
- branches/histogram
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/histogram
- Property svn:mergeinfo changed
/trunk/sources (added) merged: 5962-5963,5971-5972,5975-5976,5983-5984,5987,5993,5997-5998,6002-6003,6009
- Property svn:mergeinfo changed
-
branches/histogram/HeuristicLab.Problems.DataAnalysis
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Problems.DataAnalysis (added) merged: 5962-5963
- Property svn:mergeinfo changed
-
branches/histogram/HeuristicLab.Problems.DataAnalysis/3.4/OnlineCalculators/OnlineNormalizedMeanSquaredErrorCalculator.cs
r5945 r6011 68 68 OnlineNormalizedMeanSquaredErrorCalculator normalizedMSECalculator = new OnlineNormalizedMeanSquaredErrorCalculator(); 69 69 70 //needed because otherwise the normalizedMSECalculator is in ErrorState.InsufficientValuesAdded 71 if (firstEnumerator.MoveNext() & secondEnumerator.MoveNext()) { 72 double estimated = secondEnumerator.Current; 73 double original = firstEnumerator.Current; 74 normalizedMSECalculator.Add(original, estimated); 75 } 76 70 77 // always move forward both enumerators (do not use short-circuit evaluation!) 71 78 while (firstEnumerator.MoveNext() & secondEnumerator.MoveNext()) {
Note: See TracChangeset
for help on using the changeset viewer.