Returns the reciprocal of a complex number.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Complex<T> Reciprocal(
Complex<T> z
)
Public Shared Function Reciprocal (
z As Complex(Of T)
) As Complex(Of T)
public:
static Complex<T> Reciprocal(
Complex<T> z
)
static member Reciprocal :
z : Complex<'T> -> Complex<'T>
Parameters
- z
- Type: Extreme.MathematicsComplexT
The complex number.
Return Value
Type:
ComplexTA complex number that equals one
divided by the complex number.
This method requires that the operand type
supports division.
Reference