Complex<T>.NaN Field

Represents complex NaN, or Not a Number.

Definition

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

Field Value

Complex<T>

Remarks

This constant is returned when the result of an operation is undefined.

NaN is returned when the result of a floating-point operation involving complex numbers is undefined. Use IsNaN(Complex<T>) to determine whether a value is not a number. It is not possible to determine whether a value is not a number by comparing it to another value equal to NaN.

See Also