OptimizationMethod Enumeration |
Determines how to best fit the data into the master curve.
Namespace: Altaxo.Science.Thermorheology.MasterCurvesAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public enum OptimizationMethod
Members Member name | Value | Description |
---|
OptimizeAbsoluteDifference | 0 |
Evaluates the mean absolute difference (L1-Norm) between master curve and new data and tries to minimize this difference.
|
OptimizeSquaredDifference | 1 |
Evaluates the mean squared difference (L2-Norm) between master curve and new data and tries to minimize this value (minimization method).
|
OptimizeSquaredDifferenceByBruteForce | 2 |
Evaluates the mean squared difference (L2-Norm) between master curve and new data and tries to minimize this value by brute force search.
|
See Also