Indicates whether a complex number is
undefined.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static bool IsNaN(
Complex<T> z
)
Public Shared Function IsNaN (
z As Complex(Of T)
) As Boolean
public:
static bool IsNaN(
Complex<T> z
)
static member IsNaN :
z : Complex<'T> -> bool
Parameters
- z
- Type: Extreme.MathematicsComplexT
A complex number.
Return Value
Type:
Boolean if the real or imaginary part
is T.NaN; otherwise
.
Use this method rather than testing for equality with
NaN. By definition, NaN is not equal to
any other number, including itself.
If the operand type does not support IEEE special values, this method returns .
Reference