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.OptimizationAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3618.0 (4.8.3618.0)
Syntaxpublic 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