Complex<T>.Division 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
Division( | Divides a real number by a complex number. |
Division( | Divides a complex number by a real number. |
Division( | Divides a complex number by another. |
Division(T, Complex<T>) Operator
Divides a real number by a complex number.
public static Complex<T> operator /(
T a,
Complex<T> z
)
Parameters
Return Value
Complex<T>A complex number that equals the real number divided by the complex number.
Remarks
If you are using a language that does not support operator overloading, use the staticDivide(T, Complex<T>) method instead.
This method requires that the operand type supports multiplication.
Division(Complex<T>, T) Operator
Divides a complex number by a real number.
public static Complex<T> operator /(
Complex<T> z,
T a
)
Parameters
Return Value
Complex<T>A complex number that equals the complex number divided by the real number.
Remarks
If you are using a language that does not support operator overloading, use the staticDivide(Complex<T>, T) method instead.
This method requires that the operand type supports multiplication.
Division(Complex<T>, Complex<T>) Operator
Divides a complex number by another.
public static Complex<T> operator /(
Complex<T> z1,
Complex<T> z2
)
Parameters
Return Value
Complex<T>A complex number that equals the first operand divided by the second.
Implements
IDivisionOperators<TSelf, TOther, TResult>.Division(TSelf, TOther)Remarks
If you are using a language that does not support operator overloading, use the staticDivide(Complex<T>, Complex<T>) method instead.
This method requires that the operand type supports multiplication.