Click or drag to resize

OptimizationMethod Enumeration

Determines how to best fit the data into the master curve.

Namespace: Altaxo.Science.Thermorheology.MasterCurves
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public enum OptimizationMethod
Members
Member nameValueDescription
OptimizeAbsoluteDifference0 Evaluates the mean absolute difference (L1-Norm) between master curve and new data and tries to minimize this difference.
OptimizeSquaredDifference1 Evaluates the mean squared difference (L2-Norm) between master curve and new data and tries to minimize this value (minimization method).
OptimizeSquaredDifferenceByBruteForce2 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