Complex<T>.Addition Operator
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Addition( | Adds a complex number to a real number. |
Addition( | Adds a complex number to a real number. |
Addition( | Adds two complex numbers. |
Addition(T, Complex<T>) Operator
Adds a complex number to a real number.
public static Complex<T> operator +(
T a,
Complex<T> z
)
Parameters
Return Value
Complex<T>A complex number that is the sum of the two operands.
Remarks
If you are using a language that does not support operator overloading, use the staticAdd(T, Complex<T>) method instead.
Addition(Complex<T>, T) Operator
Adds a complex number to a real number.
public static Complex<T> operator +(
Complex<T> z,
T a
)
Parameters
Return Value
Complex<T>A complex number that is the sum of the two operands.
Remarks
If you are using a language that does not support operator overloading, use the Add(Complex<T>, T) method instead.
Addition(Complex<T>, Complex<T>) Operator
Adds two complex numbers.
public static Complex<T> operator +(
Complex<T> z1,
Complex<T> z2
)
Parameters
Return Value
Complex<T>A complex number that is the sum of the two operands.
Remarks
If you are using a language that does not support operator overloading, use the staticAdd(Complex<T>, Complex<T>) method instead.