Imaginary<T>.Division Operator
Definition
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Division( | Divides a complex number by an imaginary number. |
Division( | Divides a real number by an imaginary number. |
Division( | Divides an imaginary number by a real number. |
Division( | Divides an imaginary number by a complex number. |
Division( | Divides an imaginary number by another. |
Division(Complex<T>, Imaginary<T>) Operator
public static Complex<T> operator /(
Complex<T> z1,
Imaginary<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, Imaginary<T>) method instead.
This method requires that the operand type supports multiplication.
Division(T, Imaginary<T>) Operator
public static Imaginary<T> operator /(
T a,
Imaginary<T> z
)
Parameters
Return Value
Imaginary<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, Imaginary<T>) method instead.
This method requires that the operand type supports multiplication.
Division(Imaginary<T>, T) Operator
public static Imaginary<T> operator /(
Imaginary<T> z,
T a
)
Parameters
Return Value
Imaginary<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(Imaginary<T>, T) method instead.
This method requires that the operand type supports multiplication.
Division(Imaginary<T>, Complex<T>) Operator
public static Complex<T> operator /(
Imaginary<T> z,
Complex<T> z2
)
Parameters
Return Value
Complex<T>A complex number that equals the complex number divided by the complex number.
Remarks
If you are using a language that does not support operator overloading, use the static[!:Divide(Imaginary<T>, Complex<T>)] method instead.
This method requires that the operand type supports multiplication.
Division(Imaginary<T>, Imaginary<T>) Operator
public static T operator /(
Imaginary<T> z1,
Imaginary<T> z2
)
Parameters
Return Value
TA 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(Imaginary<T>, Imaginary<T>) method instead.
This method requires that the operand type supports multiplication.