mpfr_libmpfr_prec_round Method |
Namespace: Math.Mpfr.Native
If prec is greater or equal to the precision of x, then new space is allocated for the significand, and it is filled with zeros. Otherwise, the significand is rounded to precision prec with the given direction. In both cases, the precision of x is changed to prec.
Here is an example of how to use mpfr_prec_round to implement Newton’s algorithm to compute the inverse of a, assuming x is already an approximation to n bits:
mpfr_set_prec (t, 2 * n); mpfr_set(t, a, mpfr_rnd_t.MPFR_RNDN); /* round a to 2n bits */ mpfr_mul(t, t, x, mpfr_rnd_t.MPFR_RNDN); /* t is correct to 2n bits */ mpfr_ui_sub(t, 1, t, mpfr_rnd_t.MPFR_RNDN); /* high n bits cancel with 1 */ mpfr_prec_round(t, n, mpfr_rnd_t.MPFR_RNDN); /* t is correct to n bits */ mpfr_mul(t, t, x, mpfr_rnd_t.MPFR_RNDN); /* t is correct to n bits */ mpfr_prec_round(x, 2 * n, mpfr_rnd_t.MPFR_RNDN); /* exact */ mpfr_add(x, x, t, mpfr_rnd_t.MPFR_RNDN); /* x is correct to 2n bits */
Warning! You must not use this function if x was initialized with mpfr_custom_init_set (see GNU MPFR - Custom Interface).
// 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); // Round x to precision 128 bits. Assert.IsTrue(mpfr_lib.mpfr_prec_round(x, 128U, mpfr_rnd_t.MPFR_RNDN) == 0); // Assert that precision has changed to 128 bits. Assert.IsTrue(mpfr_lib.mpfr_get_prec(x) == 128U); // Release unmanaged memory allocated for x. mpfr_lib.mpfr_clear(x);