Click or drag to resize
mpfr_libmpfr_sum Method
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)
Syntax
public static int mpfr_sum(
	mpfr_t rop,
	mpfr_t[] tab,
	uint n,
	mpfr_rnd_t rnd
)

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: Int32
The 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
// Create, initialize, and set a new floating-point number op1 to 10.
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);

// Create, initialize, and set a new floating-point number op2 to 20.
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);

// Create, initialize, and set a new floating-point number op3 to 30.
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);

// Create and initialize a new floating-point number rop.
mpfr_t rop = new mpfr_t();
mpfr_lib.mpfr_init2(rop, 64U);

// Set rop = Sum({op1, op2, op3}).
Assert.IsTrue(mpfr_lib.mpfr_sum(rop, new mpfr_t[] { op1, op2, op3 }, 3, mpfr_rnd_t.MPFR_RNDN) == 0);

// Assert that the value of rop is 60.
Assert.IsTrue(mpfr_lib.mpfr_get_d(rop, mpfr_rnd_t.MPFR_RNDN) == 60.0);

// Release unmanaged memory allocated for rop, op1, and op2.
mpfr_lib.mpfr_clears(rop, op1, op2, op3, null);
See Also