Click or drag to resize
mathisnormal Method (Double)
Checks if the given number is normal.

Namespace:  C
Assembly:  C.math (in C.math.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static bool isnormal(
	double number
)

Parameters

number
Type: SystemDouble
A floating-point number.

Return Value

Type: Boolean
true if number is normal, false otherwise.
Remarks

A floating-point number is normal if it is neither zero, subnormal, infinite, nor NaN.

See isnormal in the C standard documentation.

See Also