Click or drag to resize

OptimizationMethod Enumeration

Specifies how to best fit (optimize) the data into the master curve.

Namespace: Altaxo.Science.Thermorheology.MasterCurves
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public enum OptimizationMethod
Members
Member nameValueDescription
OptimizeAbsoluteDifference0 Evaluates the mean absolute difference (L1-norm) between the master curve and the new data and tries to minimize this difference.
OptimizeSquaredDifference1 Evaluates the mean squared difference (L2-norm) between the master curve and the new data and tries to minimize this value using a minimization method.
OptimizeSquaredDifferenceByBruteForce2 Evaluates the mean squared difference (L2-norm) between the master curve and the new data and tries to minimize this value by brute-force search.

The OptimizationMethod type exposes the following members.

Extension Methods
 NameDescription
Public Extension MethodIsT Determines whether the enumeration value is equal to the specified value.
(Defined by EnumerationExtensions)
Public Extension MethodWithClearedFlagT Returns the enum value with the specified flag cleared.
(Defined by EnumerationExtensions)
Public Extension MethodWithFlagT Returns the enum value with the specified flag set or cleared, depending on the value argument.
(Defined by EnumerationExtensions)
Public Extension MethodWithSetFlagT Returns the enum value with the specified flag set.
(Defined by EnumerationExtensions)
Top
See Also