Click or drag to resize
mpfr_libmpfr_init2 Method
Initialize x, set its precision to be exactly prec bits and 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_init2(
	mpfr_t x,
	mpfr_prec_t prec
)

Parameters

x
Type: Math.Mpfr.Nativempfr_t
The floating-point number to initialize.
prec
Type: Math.Mpfr.Nativempfr_prec_t
The precision of the significand in bits.
Remarks

(Warning: the corresponding MPF function initializes to zero instead.)

Normally, a variable should be initialized once only or at least be cleared, using mpfr_clear, between initializations. To change the precision of a variable which has already been initialized, use mpfr_set_prec. The precision prec must be an integer between MPFR_PREC_MIN and MPFR_PREC_MAX (otherwise the behavior is undefined).

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

// Assert that the value of x is NaN, and that its precision is 64 bits.
Assert.IsTrue(mpfr_lib.mpfr_nan_p(x) != 0);
uint p = mpfr_lib.mpfr_get_prec(x);
Assert.IsTrue(mpfr_lib.mpfr_get_prec(x) == 64U);

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