Click or drag to resize

BoxConstraintsProjector(NullableDouble, NullableDouble, Boolean, NullableDouble, Boolean) Constructor

Initializes a new instance of the BoxConstraintsProjector class with specified fixed values, bounds, and exclusivity settings.

Namespace: Altaxo.Calc.Optimization
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3618.0 (4.8.3618.0)
Syntax
C#
public BoxConstraintsProjector(
	double?[] fixedValues,
	double?[]? lowerBounds,
	bool[]? lowerBoundsExclusive,
	double?[]? upperBounds,
	bool[]? upperBoundsExclusive
)

Parameters

fixedValues  NullableDouble
Array of fixed values for each dimension, or null to indicate no fixed value.
lowerBounds  NullableDouble
Array of lower bounds for each dimension, or null if not specified.
lowerBoundsExclusive  Boolean
Array indicating whether each lower bound is exclusive, or null if not specified.
upperBounds  NullableDouble
Array of upper bounds for each dimension, or null if not specified.
upperBoundsExclusive  Boolean
Array indicating whether each upper bound is exclusive, or null if not specified.
See Also