gmp_lib.mpq_mul Method

GMP Native Interface for .NET

gmp_libmpq_mul Method
Set product to multiplier * multiplicand.

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_mul(
	mpq_t product,
	mpq_t multiplier,
	mpq_t multiplicand
)
Public Shared Sub mpq_mul ( 
	product As mpq_t,
	multiplier As mpq_t,
	multiplicand As mpq_t
)
public:
static void mpq_mul(
	mpq_t^ product, 
	mpq_t^ multiplier, 
	mpq_t^ multiplicand
)
static member mpq_mul : 
        product : mpq_t * 
        multiplier : mpq_t * 
        multiplicand : mpq_t -> unit 

Parameters

product
Type: Math.Gmp.Nativempq_t
The result rational.
multiplier
Type: Math.Gmp.Nativempq_t
The first operand rational.
multiplicand
Type: Math.Gmp.Nativempq_t
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