Click or drag to resize

BoundedMultiVariableFunctionFitterM(FuncDoubleVector, DoubleVector, Double, Int32) Constructor

Constructs a BoundedMultiVariableFunctionFitter instance for the given parameterized delegate.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public BoundedMultiVariableFunctionFitter(
	Func<DoubleVector, DoubleVector, double> function,
	int xDimension
)

Parameters

function  FuncDoubleVector, DoubleVector, Double
Parameterized function delegate. The delegate takes a vector of parameter values as its first argument, and the vector, of length xDimension at which to evaluate the function as its second argument, and returns a double.
xDimension  Int32
Dimension of the domain of the parameterized function.
See Also