Constructs a DoubleVectorParameterizedDelegate instance from the given delegate.

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

Syntax

C#
public DoubleVectorParameterizedDelegate(
	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:
DoubleVectorParameterizedDelegate(
	Func<DoubleVector^, DoubleVector^, double>^ function, 
	int xDimension
)

Parameters

function
Type: System..::.Func<(Of <(DoubleVector, DoubleVector, Double>)>)
The constructed instance will use the delegate function to implement the Evaluate method inherited from DoubleParameterizedFunctional
xDimension
Type: System..::.Int32
The dimension of the domain of the parameterized function.

See Also