gmp_libmpf_reldiff Method |
Compute the relative difference between op1 and op2 and store the result in rop. This is | op1 - op2 | / op1.
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_reldiff(
mpf_t rop,
mpf_t op1,
mpf_t op2
)
Public Shared Sub mpf_reldiff (
rop As mpf_t,
op1 As mpf_t,
op2 As mpf_t
)
public:
static void mpf_reldiff(
mpf_t^ rop,
mpf_t^ op1,
mpf_t^ op2
)
static member mpf_reldiff :
rop : mpf_t *
op1 : mpf_t *
op2 : mpf_t -> unit
Parameters
- rop
- Type: Math.Gmp.Nativempf_t
The result float. - op1
- Type: Math.Gmp.Nativempf_t
The first operand float. - op2
- Type: Math.Gmp.Nativempf_t
The second operand float.
Examples
gmp_lib.mpf_set_default_prec(64U);
mpf_t x = new mpf_t();
gmp_lib.mpf_init_set_si(x, 10);
mpf_t y = new mpf_t();
gmp_lib.mpf_init_set_si(y, -210);
mpf_t z = new mpf_t();
gmp_lib.mpf_init(z);
gmp_lib.mpf_reldiff(z, x, y);
Assert.IsTrue(gmp_lib.mpf_get_d(z) == 22.0);
gmp_lib.mpf_clears(x, y, z, null);
gmp_lib.mpf_set_default_prec(64UI)
Dim x As New mpf_t()
gmp_lib.mpf_init_set_si(x, 10)
Dim y As New mpf_t()
gmp_lib.mpf_init_set_si(y, -210)
Dim z As New mpf_t()
gmp_lib.mpf_init(z)
gmp_lib.mpf_reldiff(z, x, y)
Assert.IsTrue(gmp_lib.mpf_get_d(z) = 22.0)
gmp_lib.mpf_clears(x, y, z, Nothing)
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