Imaginary<T>.Reciprocal Method

Returns the reciprocal of an imaginary number.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
public static Imaginary<T> Reciprocal(
	Imaginary<T> z
)

Parameters

z  Imaginary<T>
The imaginary number.

Return Value

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

Remarks

This method requires that the operand type supports division.

See Also