Click or drag to resize

NonlinearMinimizationResult Constructor

Initializes a new instance of the NonlinearMinimizationResult class.

Namespace: Altaxo.Calc.Optimization
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public NonlinearMinimizationResult(
	IObjectiveModel modelInfo,
	int iterations,
	ExitCondition reasonForExit,
	IReadOnlyList<bool>? isFixed = null
)

Parameters

modelInfo  IObjectiveModel
The objective model at the minimizing point.
iterations  Int32
The number of iterations performed.
reasonForExit  ExitCondition
The reason for termination of the minimization.
isFixed  IReadOnlyListBoolean  (Optional)
Optional flags that indicate whether each parameter is fixed either by the user or due to being stuck at a boundary.
See Also