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


Extreme Optimization Mathematics Library for .NET

ComplexFunction Delegate

Represents a function returning a complex number that has one DoubleComplex argument.

[Visual Basic]
Public Delegate Function ComplexFunction( _
   ByVal z As DoubleComplex _
) As DoubleComplex
[C#]
public delegate DoubleComplex ComplexFunction(
   DoubleComplex z
);

Parameters

z
A DoubleComplex number.

Return Value

A DoubleComplex number.

Remarks

Use a ComplexFunction delegate to encapsulate the evaluation of a complex function with one 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.

Requirements

Namespace: Extreme.Mathematics

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

See Also

Extreme.Mathematics Namespace