ParameterSetElementGetFitArrays Method |
Gets the arrays of parameter values, isFixed, lowerBounds and upperBounds for nonlinear fitting.
The arrays have the same length as the provided list of elements has.
Namespace: Altaxo.Calc.Regression.NonlinearAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static (double[] , bool[] , double?[] , double?[]? ) GetFitArrays(
IReadOnlyList<ParameterSetElement> elements
)
Parameters
- elements IReadOnlyListParameterSetElement
- The parameter set elements.
Return Value
ValueTupleDouble,
Boolean,
NullableDouble,
NullableDoubleTuple of the arrays parameter values, isFixed, lowerBounds (inclusive) and upperBounds (inclusive) for nonlinear fitting.
If lowerBounds or upperBounds not contain any value, the corresponding returned array is null.
See Also