Constructs a BddOneVariableFunctionFitter instance with the given parameterized function delegate.

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

Syntax

C#
public BoundedOneVariableFunctionFitter(
	Func<DoubleVector, double, double> f
)
Visual Basic (Declaration)
Public Sub New ( _
	f As Func(Of DoubleVector, Double, Double) _
)
Visual C++
public:
BoundedOneVariableFunctionFitter(
	Func<DoubleVector^, double, double>^ f
)

Parameters

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

See Also