Imaginary<T>.Divide Method
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Divide( | Divides a real number by an imaginary number. |
Divide( | Divides an imaginary number by a real number. |
Divide( | Divides an imaginary number by another. |
Divide(T, Imaginary<T>)
Divides a real number by an imaginary number.
public static Imaginary<T> Divide(
T a,
Imaginary<T> z
)
Parameters
Return Value
Imaginary<T>An imaginary number that equals the real number divided by the imaginary number.
Remarks
This method is equivalent to the Division(T, Imaginary<T>). It is provided for languages that do not support operator overloading.
Divide(Imaginary<T>, T)
Divides an imaginary number by a real number.
public static Imaginary<T> Divide(
Imaginary<T> z,
T a
)
Parameters
Return Value
Imaginary<T>An imaginary number that equals the complex number divided by the real number.
Remarks
This method is equivalent to the Division(Imaginary<T>, T). It is provided for languages that do not support operator overloading.
Divide(Imaginary<T>, Imaginary<T>)
Divides an imaginary number by another.
public static Imaginary<T> Divide(
Imaginary<T> z1,
Imaginary<T> z2
)
Parameters
Return Value
Imaginary<T>A real number that equals the first operand divided by the second.
Remarks
This method is equivalent to the Division(Imaginary<T>, Imaginary<T>). It is provided for languages that do not support operator overloading.