Click or drag to resize
mpfr_libmpfr_set_nan Method
Set the variable x to NaN (Not-a-Number).

Namespace:  Math.Mpfr.Native
Assembly:  Math.Mpfr.Native (in Math.Mpfr.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static void mpfr_set_nan(
	mpfr_t x
)

Parameters

x
Type: Math.Mpfr.Nativempfr_t
The result floating-point number.
Remarks

In mpfr_set_nan, the sign bit of the result is unspecified.

Examples
// Create, initialize, and set a new floating-point number x to NaN.
mpfr_t x = new mpfr_t();
mpfr_lib.mpfr_init2(x, 64U);
mpfr_lib.mpfr_set_nan(x);

// Assert x is NaN.
Assert.IsTrue(mpfr_lib.mpfr_nan_p(x) != 0);

// Release unmanaged memory allocated for x.
mpfr_lib.mpfr_clear(x);
See Also