Click or drag to resize

ParameterSetElementCollectVaryingParametersAndBoundaries Method

Collects only the varying parameters and their corresponding bounds.

Namespace: Altaxo.Calc.Regression.Nonlinear
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.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: parameter values, lower bounds (inclusive, can be ), and upper bounds (inclusive, can be ).
Remarks
The returned lists have the same length as, or a shorter length than, the provided parameters.
See Also