Represents a function returning a DoubleComplex that has one DoubleComplex argument.
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Delegate Function ComplexFunction ( _ z As DoubleComplex _ ) As DoubleComplex |
| C# |
|---|
public delegate DoubleComplex ComplexFunction ( DoubleComplex z ) |
| C++ |
|---|
public delegate DoubleComplex ComplexFunction ( DoubleComplex z ) |
Parameters
- z (Extreme.Mathematics.DoubleComplex)
- 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.