Click or drag to resize
mpfr_libmpfr_set_exp Method
Set the exponent of x if e is in the current exponent range.

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_exp(
	mpfr_t x,
	mpfr_exp_t e
)

Parameters

x
Type: Math.Mpfr.Nativempfr_t
The operand floating-point number.
e
Type: Math.Mpfr.Nativempfr_exp_t
The exponent value.

Return Value

Type: Int32
Return 0 (even if x is not a non-zero ordinary number); otherwise, return a non-zero value.
Remarks

Set the exponent of x to e if x is a non-zero ordinary number and e is in the current exponent range, and return 0; otherwise, return a non-zero value (x is not changed).

Examples
// Create, initialize, and set a new floating-point number x to 100.
mpfr_t x = new mpfr_t();
mpfr_lib.mpfr_init2(x, 64U);
Assert.IsTrue(mpfr_lib.mpfr_set_si(x, 100, mpfr_rnd_t.MPFR_RNDN) == 0);

// Assert exp of x.
Assert.IsTrue(mpfr_lib.mpfr_get_exp(x) == 7);

// Set exponent of x.
Assert.IsTrue(mpfr_lib.mpfr_set_exp(x, 5) == 0);

// Assert x and its exp.
Assert.IsTrue(mpfr_lib.mpfr_get_exp(x) == 5);
Assert.IsTrue(mpfr_lib.mpfr_get_d(x, mpfr_rnd_t.MPFR_RNDN) == 25.0);

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