Click or drag to resize
mpfr_libmpfr_set_str Method
Set rop to the value of the string s in base base, rounded in the direction rnd.

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 int mpfr_set_str(
	mpfr_t rop,
	char_ptr s,
	int base,
	mpfr_rnd_t rnd
)

Parameters

rop
Type: Math.Mpfr.Nativempfr_t
The result floating-point number.
s
Type: Math.Gmp.Nativechar_ptr
base
Type: SystemInt32
rnd
Type: Math.Mpfr.Nativempfr_rnd_t
The rounding direction.

Return Value

Type: Int32
Retturn 0 if the entire string up to the final null character is a valid number in base base; otherwise it is -1.
Remarks

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.

Examples
// 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);
See Also