Represents a function returning a Vector that has a Vector as its argument.

Namespace: Extreme.Mathematics
Assembly:   Extreme.Numerics (in Extreme.Numerics)
Version: 2.1.7017.0

Syntax

Visual Basic (Declaration)
Public Delegate Function MultivariateVectorFunction ( _
	x As Vector _
) As Vector
C#
public delegate Vector MultivariateVectorFunction (
	Vector x
)
Visual C++
public delegate Vector^ MultivariateVectorFunction (
	Vector^ x
)

Parameters

x
Extreme.Mathematics.LinearAlgebra.Vector
A Vector.

Return Value

A Vector.

Remarks

Use a MultivariateVectorFunction delegate to encapsulate the evaluation of a function that returns a Vector and takes one Vector argument.

Many calculations involve the repeated evaluation of one or more user-supplied functions. Numerical integration and differentiation and finding zeroes of functions are common examples. In the .NET framework, this functionality is implemented using delegates.