gmp_lib.mpq_div_2exp Method

GMP Native Interface for .NET

gmp_libmpq_div_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 mpq_div_2exp(
	mpq_t rop,
	mpq_t op1,
	uint op2
)
Public Shared Sub mpq_div_2exp ( 
	rop As mpq_t,
	op1 As mpq_t,
	op2 As UInteger
)
public:
static void mpq_div_2exp(
	mpq_t^ rop, 
	mpq_t^ op1, 
	unsigned int op2
)
static member mpq_div_2exp : 
        rop : mpq_t * 
        op1 : mpq_t * 
        op2 : uint32 -> unit 

Parameters

rop
Type: Math.Gmp.Nativempq_t
The result rational.
op1
Type: Math.Gmp.Nativempq_t
The first operand rational.
op2
Type: SystemUInt32
The second operand rational.
Examples

No code example is currently available or this language may not be supported.

No code example is currently available or this language may not be supported.

See Also