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.NonlinearAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static (List<double> varyingParameterValues, List<double?> lowerBounds, List<double?>? upperBounds) CollectVaryingParametersAndBoundaries(
IReadOnlyList<ParameterSetElement> parameters
)
Parameters
- parameters IReadOnlyListParameterSetElement
- The parameters.
Return Value
ValueTupleListDouble,
ListNullableDouble,
ListNullableDoubleA 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