Click or drag to resize

GlobalCurveFitter(FuncDoubleVector, Double, Double, Int32, TrustRegionMinimizerCheck) Constructor

Constructs a GlobalCurveFitter object for the given parameterized function. Sets the limit to the number of iterations performed by the minimizer to the given value.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public GlobalCurveFitter(
	Func<DoubleVector, double, double> parameterizedFunction,
	int maxIterations,
	TrustRegionMinimizerCheck checkParameters = TrustRegionMinimizerCheck.None
)

Parameters

parameterizedFunction  FuncDoubleVector, Double, Double
Parameterized function to fit.
maxIterations  Int32
Maximum number of iterations for the minimizer.
checkParameters  TrustRegionMinimizerCheck  (Optional)
Used to specify the level of input parameter checking done by the solver. See CheckParameters property description.
See Also