- Timestamp:
- 01/14/22 10:04:38 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3136_Structural_GP/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/LinearScaling.cs
r18191 r18196 85 85 OnlineLinearScalingParameterCalculator.Calculate(estimatedValues, targetValues, out double a, out double b, out OnlineCalculatorError error); 86 86 if (error == OnlineCalculatorError.None) { 87 offsetNode.Value = a ;88 scaleNode.Value = b ;87 offsetNode.Value = a + b * offsetNode.Value; 88 scaleNode.Value = b * scaleNode.Value; 89 89 } 90 90 }
Note: See TracChangeset
for help on using the changeset viewer.