Adds two DoubleComplex numbers.
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Shared Operator + ( _ z1 As DoubleComplex, _ z2 As DoubleComplex _ ) As DoubleComplex |
| C# |
|---|
public static DoubleComplex operator + ( DoubleComplex z1, DoubleComplex z2 ) |
| C++ |
|---|
public: static DoubleComplex operator + ( DoubleComplex z1, DoubleComplex z2 ) |
Parameters
- z1 (Extreme.Mathematics.DoubleComplex)
- The first DoubleComplex number.
- z2 (Extreme.Mathematics.DoubleComplex)
- The second DoubleComplex number.
Return Value
A DoubleComplex number that is the sum of the two operands.
Remarks
If you are using a language that does not
support operator overloading, use the
static (Shared in Visual Basic)
Add(DoubleComplex, DoubleComplex) method instead.