Complex<T>.Reciprocal Method

Returns the reciprocal of a complex number.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Complex<T> Reciprocal(
	Complex<T> z
)

Parameters

z  Complex<T>
The complex number.

Return Value

Complex<T>
A complex number that equals one divided by the complex number.

Remarks

This method requires that the operand type supports division.

See Also