Complex<T>.Addition Operator
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
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.
Implements
IAdditionOperators<TSelf, TOther, TResult>.Addition(TSelf, TOther)Remarks
If you are using a language that does not support operator overloading, use the staticAdd(Complex<T>, Complex<T>) method instead.