Elementary.IsNaN Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

IsNaN(Double) Returns whether the specified double-precision floating-point number is a Not-A-Number (NaN) value.
IsNaN(Single) Returns whether the specified float-precision floating-point number is a Not-A-Number (NaN) value.

IsNaN(Double)

Returns whether the specified double-precision floating-point number is a Not-A-Number (NaN) value.
C#
public static bool IsNaN(
	double x
)

Parameters

x  Double
A double-precision floating-point number.

Return Value

Boolean
true if x is a NaN; otherwise false.

Remarks

This method is significantly faster than the IsNaN(Double) method in many situations.

IsNaN(Single)

Returns whether the specified float-precision floating-point number is a Not-A-Number (NaN) value.
C#
public static bool IsNaN(
	float x
)

Parameters

x  Single
A float-precision floating-point number.

Return Value

Boolean
true if x is a NaN; otherwise false.

Remarks

This method is significantly faster than the IsNaN(Double) method in many situations.

See Also