GMP Native Interface for .NET
gmp_libmpf_set_d Method |
Set the value of rop from op.
Namespace: Math.Gmp.Native
Assembly: Math.Gmp.Native (in Math.Gmp.Native.dll) Version: 1.0.0.0 (1.0.0.0)

public static void mpf_set_d( mpf_t rop, double op )
Public Shared Sub mpf_set_d ( rop As mpf_t, op As Double )
public: static void mpf_set_d( mpf_t^ rop, double op )
static member mpf_set_d : rop : mpf_t * op : float -> unit
Parameters
- rop
- Type: Math.Gmp.Nativempf_t
The result float. - op
- Type: SystemDouble
The operand.

// Create and initialize a new floating-point number. mpf_t x = new mpf_t(); gmp_lib.mpf_init2(x, 128U); // Set x to -123.0. gmp_lib.mpf_set_d(x, -123.0); // Assert that the value of x is -123.0. Assert.IsTrue(gmp_lib.mpf_get_d(x) == -123.0); // Release unmanaged memory allocated for x. gmp_lib.mpf_clear(x);
' Create and initialize a new floating-point number. Dim x As New mpf_t() gmp_lib.mpf_init2(x, 128UI) ' Set x to -123.0. gmp_lib.mpf_set_d(x, -123.0) ' Assert that the value of x is -123.0. Assert.IsTrue(gmp_lib.mpf_get_d(x) = -123.0) ' Release unmanaged memory allocated for x. gmp_lib.mpf_clear(x)
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.
