Set rop to the sum of all elements of tab, whose size is n, correctly rounded in the direction rnd.
Namespace:
Math.Mpfr.Native
Assembly:
Math.Mpfr.Native (in Math.Mpfr.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static int mpfr_sum(
mpfr_t rop,
mpfr_t[] tab,
uint n,
mpfr_rnd_t rnd
)
Public Shared Function mpfr_sum (
rop As mpfr_t,
tab As mpfr_t(),
n As UInteger,
rnd As mpfr_rnd_t
) As Integer
public:
static int mpfr_sum(
mpfr_t^ rop,
array<mpfr_t^>^ tab,
unsigned int n,
mpfr_rnd_t rnd
)
static member mpfr_sum :
rop : mpfr_t *
tab : mpfr_t[] *
n : uint32 *
rnd : mpfr_rnd_t -> int
Parameters
- rop
- Type: Math.Mpfr.Nativempfr_t
The result floating-point number. - tab
- Type: Math.Mpfr.Nativempfr_t
Array of floating-point numbers. - n
- Type: SystemUInt32
The number of floating-point numbers in tab. - rnd
- Type: Math.Mpfr.Nativempfr_rnd_t
The rounding direction.
Return Value
Type:
Int32The returned int value is zero,
rop is guaranteed to be the exact sum; otherwise
rop might be smaller than, equal to, or larger than the exact sum.
Remarks
Warning: for efficiency reasons, tab is an array of pointers to mpfr_t,
not an array of mpfr_t.
If n = 0, then the result is +0, and if n = 1, then the function
is equivalent to mpfr_set(mpfr_t, mpfr_t, mpfr_rnd_t).
For the special exact cases, the result is the same as the one obtained with a succession of additions
(mpfr_add(mpfr_t, mpfr_t, mpfr_t, mpfr_rnd_t)) in infinite precision. In particular, if the result is an exact zero and
n ≤ 1:
-
if all the inputs have the same sign (i.e., all +0 or all −0), then the result has the same sign as the inputs;
-
otherwise, either because all inputs are zeros with at least a +0 and a −0, or because some inputs are non-zero
(but they globally cancel), the result is +0, except for the MPFR_RNDD rounding mode,
where it is −0.
Examples
mpfr_t op1 = new mpfr_t();
mpfr_lib.mpfr_init2(op1, 64U);
Assert.IsTrue(mpfr_lib.mpfr_set_si(op1, 10, mpfr_rnd_t.MPFR_RNDN) == 0);
mpfr_t op2 = new mpfr_t();
mpfr_lib.mpfr_init2(op2, 64U);
Assert.IsTrue(mpfr_lib.mpfr_set_si(op2, 20, mpfr_rnd_t.MPFR_RNDN) == 0);
mpfr_t op3 = new mpfr_t();
mpfr_lib.mpfr_init2(op3, 64U);
Assert.IsTrue(mpfr_lib.mpfr_set_si(op3, 30, mpfr_rnd_t.MPFR_RNDN) == 0);
mpfr_t rop = new mpfr_t();
mpfr_lib.mpfr_init2(rop, 64U);
Assert.IsTrue(mpfr_lib.mpfr_sum(rop, new mpfr_t[] { op1, op2, op3 }, 3, mpfr_rnd_t.MPFR_RNDN) == 0);
Assert.IsTrue(mpfr_lib.mpfr_get_d(rop, mpfr_rnd_t.MPFR_RNDN) == 60.0);
mpfr_lib.mpfr_clears(rop, op1, op2, op3, null);
mpfr_t op1 = New mpfr_t()
mpfr_lib.mpfr_init2(op1, 64U)
Assert.IsTrue(mpfr_lib.mpfr_set_si(op1, 10, mpfr_rnd_t.MPFR_RNDN) = 0)
mpfr_t op2 = New mpfr_t()
mpfr_lib.mpfr_init2(op2, 64U)
Assert.IsTrue(mpfr_lib.mpfr_set_si(op2, 20, mpfr_rnd_t.MPFR_RNDN) = 0)
mpfr_t op3 = New mpfr_t()
mpfr_lib.mpfr_init2(op3, 64U)
Assert.IsTrue(mpfr_lib.mpfr_set_si(op3, 30, mpfr_rnd_t.MPFR_RNDN) = 0)
mpfr_t rop = New mpfr_t()
mpfr_lib.mpfr_init2(rop, 64U)
Assert.IsTrue(mpfr_lib.mpfr_sum(rop, New mpfr_t() { op1, op2, op3 }, 3, mpfr_rnd_t.MPFR_RNDN) = 0)
Assert.IsTrue(mpfr_lib.mpfr_get_d(rop, mpfr_rnd_t.MPFR_RNDN) = 60.0)
mpfr_lib.mpfr_clears(rop, op1, op2, op3, 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