Click or drag to resize

ParameterSetElementCollectVaryingParametersAndBoundaries Method

Collects a list of only the varying parameters (!) and their corresponding boundaries. The returned lists have the same length or less length than the provided elements.

Namespace: Altaxo.Calc.Regression.Nonlinear
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static (List<double> varyingParameterValues, List<double?> lowerBounds, List<double?>? upperBounds) CollectVaryingParametersAndBoundaries(
	IReadOnlyList<ParameterSetElement> parameters
)

Parameters

parameters  IReadOnlyListParameterSetElement
The parameters.

Return Value

ValueTupleListDouble, ListNullableDouble, ListNullableDouble
A tuple of three lists, one with the parameters, one with the lower bounds (inclusive, can be null), and one with the upper bounds (inclusive, can be null).
See Also