Complex<T>.Infinity Field

Represents complex infinity.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static readonly Complex<T> Infinity

Field Value

Complex<T>

Remarks

Complex infinity does not have a sign. Because the complex numbers do not have a natural ordering, it does not make sense to speak of positive or negative numbers.

Directed infinities, where the Magnitude is infinite, but the Phase is finite, are not supported in this release.

Infinity is returned when the magnitude of the complex result of a floating-point operation is too large for the destination format.

Direct comparisons with Infinity are not recommended. Instead, use the IsInfinity(Complex<T>) method.

See Also