mpfr_libmpfr_set_str Method |
Namespace: Math.Mpfr.Native
See the documentation of O:Math.Mpfr.Native.mpfr_lib.mpfr_strtofr for a detailed description of the valid string formats. Contrary to O:Math.Mpfr.Native.mpfr_lib.mpfr_strtofr,mpfr_set_str requires the whole string to represent a valid floating-point number.
The meaning of the return value differs from other MPFR functions: it is 0 if the entire string up to the final null character is a valid number in base base; otherwise it is -1, and rop may have changed (users interested in the ternary value should use O:Math.Mpfr.Native.mpfr_lib.mpfr_strtofr instead).
Note: it is preferable to use O:Math.Mpfr.Native.mpfr_lib.mpfr_strtofr if one wants to distinguish between an infinite rop value coming from an infinite s or from an overflow.
// Create, initialize, and set a new floating-point number x to 0.0234. mpfr_t x = new mpfr_t(); mpfr_lib.mpfr_init2(x, 64U); char_ptr value = new char_ptr("0.234e-4"); Assert.IsTrue(mpfr_lib.mpfr_set_str(x, value, 10, mpfr_rnd_t.MPFR_RNDN) == 0); // Assert that x is 0.0234. Assert.IsTrue(x.ToString() == "0.233999999999999999999e-4"); // Release unmanaged memory allocated for x and value. mpfr_lib.mpfr_clear(x); gmp_lib.free(value);