Complex<T>.Divide Method

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

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

Divide(T, Complex<T>)

Divides a real number by a complex number.
C#
public static Complex<T> Divide(
	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

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

Parameters

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

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.
C#
public static Complex<T> Divide(
	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.

Remarks

This method is equivalent to the Division(Complex<T>, Complex<T>). It is provided for languages that do not support operator overloading.

See Also