mathisunordered Method (Double, Double) |
Gets a value that indicates whether two floating-point numbers are unordered.
Namespace:
C
Assembly:
C.math (in C.math.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static bool isunordered(
double number1,
double number2
)
Public Shared Function isunordered (
number1 As Double,
number2 As Double
) As Boolean
public:
static bool isunordered(
double number1,
double number2
)
static member isunordered :
number1 : float *
number2 : float -> bool
Parameters
- number1
- Type: SystemDouble
A floating-point number. - number2
- Type: SystemDouble
A floating-point number.
Return Value
Type:
Booleantrue if either
number1 or
number1 is
NaN,
false otherwise.
Remarks
See Also