Complex<T>.Division Operator
Definition
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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
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
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
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.
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.