Complex<T>.Divide Method
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
Divide( | Divides a real number by a complex number. |
Divide( | Divides a complex number by a real number. |
Divide( | Divides a complex number by another. |
Divide(T, Complex<T>)
Divides a real number by a complex number.
public static Complex<T> Divide(
T a,
Complex<T> z
)
Parameters
Return Value
Complex<T>A complex number that equals the real number divided by the complex number.
Remarks
This method is equivalent to the Division(T, Complex<T>). It is provided for languages that do not support operator overloading.
Divide(Complex<T>, T)
Divides a complex number by a real number.
public static Complex<T> Divide(
Complex<T> z,
T a
)
Parameters
Return Value
Complex<T>A complex number that equals the complex number divided by the real number.
Remarks
This method is equivalent to the Division(Complex<T>, T). It is provided for languages that do not support operator overloading.
Divide(Complex<T>, Complex<T>)
Divides a complex number by another.
public static Complex<T> Divide(
Complex<T> z1,
Complex<T> z2
)
Parameters
Return Value
Complex<T>A complex number that equals the first operand divided by the second.
Remarks
This method is equivalent to the Division(Complex<T>, Complex<T>). It is provided for languages that do not support operator overloading.