Click or drag to resize
gmp_libmpf_mul_2exp Method
Set rop to op1 * 2^op2.

Namespace:  Math.Gmp.Native
Assembly:  Math.Gmp.Native (in Math.Gmp.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static void mpf_mul_2exp(
	mpf_t rop,
	mpf_t op1,
	mp_bitcnt_t op2
)

Parameters

rop
Type: Math.Gmp.Nativempf_t
The result float.
op1
Type: Math.Gmp.Nativempf_t
The first operand.
op2
Type: Math.Gmp.Nativemp_bitcnt_t
The second operand.
Examples
// Set default precision to 64 bits.
gmp_lib.mpf_set_default_prec(64U);

// Create, initialize, and set a new floating-point number x to 100.
mpf_t x = new mpf_t();
gmp_lib.mpf_init_set_si(x, 100);

// Create and initialize a new floating-point number z.
mpf_t z = new mpf_t();
gmp_lib.mpf_init(z);

// Set z = x * 2^8.
gmp_lib.mpf_mul_2exp(z, x, 8U);

// Assert that the value of z is 25600.
Assert.IsTrue(gmp_lib.mpf_get_d(z) == 25600.0);

// Release unmanaged memory allocated for x and z.
gmp_lib.mpf_clears(x, z, null);
See Also