Click or drag to resize
mpfr_libmpfr_init Method
Initialize x, set its precision to the default precision, and set its value to NaN.

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_init(
	mpfr_t x
)

Parameters

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

The default precision can be changed by a call to mpfr_set_default_prec.

Warning! In a given program, some other libraries might change the default precision and not restore it. Thus it is safer to use mpfr_init2.

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

// Assert that the value of 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