Complex<T>.Division Operator

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

Division(T, Complex<T>) Divides a real number by a complex number.
Division(Complex<T>, T) Divides a complex number by a real number.
Division(Complex<T>, Complex<T>) Divides a complex number by another.

Division(T, Complex<T>) Operator

Divides a real number by a complex number.
C#
public static Complex<T> operator /(
	T a,
	Complex<T> z
)

Parameters

a  T
The real number.
z  Complex<T>
The complex number.

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.
C#
public static Complex<T> operator /(
	Complex<T> z,
	T a
)

Parameters

z  Complex<T>
The complex number.
a  T
The real number.

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.
C#
public static Complex<T> operator /(
	Complex<T> z1,
	Complex<T> z2
)

Parameters

z1  Complex<T>
The first complex number.
z2  Complex<T>
The second complex number.

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.

See Also