Click or drag to resize
mpfr_libmpfr_set_z_2exp Method
Set the value of rop from op multiplied by two to the power e, rounded toward the given 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_z_2exp(
	mpfr_t rop,
	mpz_t op,
	mpfr_exp_t e,
	mpfr_rnd_t rnd
)

Parameters

rop
Type: Math.Mpfr.Nativempfr_t
The result floating-point number.
op
Type: Math.Gmp.Nativempz_t
The operand floating-point number.
e
Type: Math.Mpfr.Nativempfr_exp_t
rnd
Type: Math.Mpfr.Nativempfr_rnd_t
The rounding direction.

Return Value

Type: Int32
Return zero, a positive, or a negative value if rop is respectively equal to, greater than, or lower than the exact result. See GNU MPFR - Rounding Modes for details.
Remarks

Note that the input 0 is converted to +0.

Examples
// Create, initialize, and set a new integer op to 200.
mpz_t op = new mpz_t();
gmp_lib.mpz_init(op);
gmp_lib.mpz_set_ui(op, 200U);

// Create, initialize, and set a new floating-point number rop to op.
mpfr_t rop = new mpfr_t();
mpfr_lib.mpfr_init2(rop, 64U);

// Set rop = op * 2^5.
Assert.IsTrue(mpfr_lib.mpfr_set_z_2exp(rop, op, 5, mpfr_rnd_t.MPFR_RNDN) == 0);

// Assert that rop is 200.
Assert.IsTrue(rop.ToString() == "0.640000000000000000000e4");

// Release unmanaged memory allocated for rop and op.
mpfr_lib.mpfr_clear(rop);
gmp_lib.mpz_clear(op);
See Also