Represents complex NaN, or Not a Number.

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Shared ReadOnly NaN As DoubleComplex
C#
public static readonly DoubleComplex NaN
C++
public:
static initonly DoubleComplex NaN

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(DoubleComplex) 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