Click or drag to resize

OneVariableFunctionFitterM(FuncDoubleVector, Double, Double) Constructor

Constructs a OneVariableFunctionFitter instance with the given parameterized function delegate.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public OneVariableFunctionFitter(
	Func<DoubleVector, double, double> f
)

Parameters

f  FuncDoubleVector, Double, Double
Parameterized function delegate. The delegate takes a vector of parameter values as its first argument, and the point at which to evaluate the function as its second argument and returns a double.
See Also