Complex<T>.IsInfinity Method

Indicates whether a complex number is infinite.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
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