Home > Extreme Optimization Mathematics Library for .NET > Reference > Extreme.Mathematics Namespace


Extreme Optimization Mathematics Library for .NET

FastMultivariateVectorFunction Delegate

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

[Visual Basic]
Public Delegate Function FastMultivariateVectorFunction( _
   ByVal input As Vector, _
   ByVal output As Vector _
) As Vector
[C#]
public delegate Vector FastMultivariateVectorFunction(
   Vector input,
   Vector output
);

Parameters

input
A Vector.
output
A Vector.

Return Value

A Vector.

Remarks

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

Rather than create a new Vector instance on each invocation, the value of output is overwritten with the result. The return value must be a reference to output.

Requirements

Namespace: Extreme.Mathematics

Assembly: Extreme.Mathematics (in Extreme.Mathematics.dll)

See Also

Extreme.Mathematics Namespace