Click or drag to resize
mpfr_libmpfr_inits2 Method
Initialize all the mpfr_t variables of the given variable argument x, set their precision to be exactly prec bits and their 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_inits2(
	mpfr_prec_t prec,
	params mpfr_t[] x
)

Parameters

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

See mpfr_init2 for more details. The list of floating-pointer numbers ends when it encounters a null pointer (whose type must also be mpfr_t).

Examples
// Create new floating-point numbers x1, x2 and x3.
mpfr_t x1 = new mpfr_t();
mpfr_t x2 = new mpfr_t();
mpfr_t x3 = new mpfr_t();

// Initialize the floating-point numbers.
mpfr_lib.mpfr_inits2(64U, x1, x2, x3, null);

// Assert that their value is 0 and precision is 64 bits.
Assert.IsTrue(mpfr_lib.mpfr_nan_p(x1) != 0 && mpfr_lib.mpfr_get_prec(x1) == 64U);
Assert.IsTrue(mpfr_lib.mpfr_nan_p(x2) != 0 && mpfr_lib.mpfr_get_prec(x2) == 64U);
Assert.IsTrue(mpfr_lib.mpfr_nan_p(x3) != 0 && mpfr_lib.mpfr_get_prec(x3) == 64U);

// Release unmanaged memory allocated for the floating-point numbers.
mpfr_lib.mpfr_clears(x1, x2, x3, null);
See Also