Constructs a MultiVariableFunctionFitter instance for the given parameterized delegate.

Namespace:  CenterSpace.NMath.Analysis
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public MultiVariableFunctionFitter(
	Func<DoubleVector, DoubleVector, double> function,
	int xDimension
)
Visual Basic (Declaration)
Public Sub New ( _
	function As Func(Of DoubleVector, DoubleVector, Double), _
	xDimension As Integer _
)
Visual C++
public:
MultiVariableFunctionFitter(
	Func<DoubleVector^, DoubleVector^, double>^ function, 
	int xDimension
)

Parameters

function
Type: System..::.Func<(Of <(DoubleVector, DoubleVector, Double>)>)
Parameterized function delegate. The delegate takes a vector of parameter values as it's first argument, and the vector, of length xDimension at which to evaluate the function as it's second arguement, and returns a double.
xDimension
Type: System..::.Int32
Dimension of the domain of the parameterized function.

See Also