mpfr_libmpfr_inits2 Method |
Initialize all the
mpfr_t variables of the given variable argument
x, set their precision to be exactly
prec bits and their value to NaN.
Namespace:
Math.Mpfr.Native
Assembly:
Math.Mpfr.Native (in Math.Mpfr.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static void mpfr_inits2(
mpfr_prec_t prec,
params mpfr_t[] x
)
Public Shared Sub mpfr_inits2 (
prec As mpfr_prec_t,
ParamArray x As mpfr_t()
)
public:
static void mpfr_inits2(
mpfr_prec_t prec,
... array<mpfr_t^>^ x
)
static member mpfr_inits2 :
prec : mpfr_prec_t *
x : mpfr_t[] -> unit
Parameters
- prec
- Type: Math.Mpfr.Nativempfr_prec_t
The precision of the significand in bits. - x
- Type: Math.Mpfr.Nativempfr_t
List of floating-point numbers to initialize.
Remarks
See mpfr_init2 for more details.
The list of floating-pointer numbers ends when it encounters a null pointer (whose type must also be mpfr_t).
Examples
mpfr_t x1 = new mpfr_t();
mpfr_t x2 = new mpfr_t();
mpfr_t x3 = new mpfr_t();
mpfr_lib.mpfr_inits2(64U, x1, x2, x3, null);
Assert.IsTrue(mpfr_lib.mpfr_nan_p(x1) != 0 && mpfr_lib.mpfr_get_prec(x1) == 64U);
Assert.IsTrue(mpfr_lib.mpfr_nan_p(x2) != 0 && mpfr_lib.mpfr_get_prec(x2) == 64U);
Assert.IsTrue(mpfr_lib.mpfr_nan_p(x3) != 0 && mpfr_lib.mpfr_get_prec(x3) == 64U);
mpfr_lib.mpfr_clears(x1, x2, x3, null);
Dim x1 As mpfr_t = New mpfr_t()
Dim x2 As mpfr_t = New mpfr_t()
Dim x3 As mpfr_t = New mpfr_t()
mpfr_lib.mpfr_inits2(64U, x1, x2, x3, Nothing)
Assert.IsTrue(mpfr_lib.mpfr_nan_p(x1) <> 0 And mpfr_lib.mpfr_get_prec(x1) = 64U)
Assert.IsTrue(mpfr_lib.mpfr_nan_p(x2) <> 0 And mpfr_lib.mpfr_get_prec(x2) = 64U)
Assert.IsTrue(mpfr_lib.mpfr_nan_p(x3) <> 0 And mpfr_lib.mpfr_get_prec(x3) = 64U)
mpfr_lib.mpfr_clears(x1, x2, x3, 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