Complex<T>.IsInfinity Method

Indicates whether a complex number is infinite.

Definition

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

Parameters

z  Complex<T>
A complex number.

Return Value

Boolean
true if the real or imaginary part is PositiveInfinity or NegativeInfinity; otherwise false.

Remarks

Directed infinities are currently not supported.

See Also