Click or drag to resize

ParameterSetElement(String, Double, Double, Boolean, NullableDouble, Boolean, NullableDouble, Boolean) Constructor

Initializes a new instance of the ParameterSetElement class.

Namespace: Altaxo.Calc.Regression.Nonlinear
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public ParameterSetElement(
	string name,
	double value,
	double variance,
	bool vary,
	double? lowerBound,
	bool isLowerBoundExclusive,
	double? upperBound,
	bool isUpperBoundExclusive
)

Parameters

name  String
The parameter name.
value  Double
The parameter value.
variance  Double
The variance of the parameter value.
vary  Boolean
true if the parameter can vary; otherwise, false.
lowerBound  NullableDouble
The lower bound for the parameter (can be ).
isLowerBoundExclusive  Boolean
true if the lower bound is exclusive; otherwise, false.
upperBound  NullableDouble
The upper bound for the parameter (can be ).
isUpperBoundExclusive  Boolean
true if the upper bound is exclusive; otherwise, false.
See Also