Click or drag to resize

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

Constructs a GlobalCurveFitter object for the given parameterized function and tolerance value for the minimizer.

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

Parameters

parameterizedFunction  FuncDoubleVector, Double, Double
Parameterized function to fit.
tolerance  Double
All tolerances used by the minimizer to determine convergence are set to the this value. TrustRegionMinimizer
checkParameters  TrustRegionMinimizerCheck  (Optional)
Used to specify the level of input parameter checking done by the solver. See CheckParameters property description.
See Also