Initialize x, set its precision to the default precision, and set its 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_init(
mpfr_t x
)
Public Shared Sub mpfr_init (
x As mpfr_t
)
public:
static void mpfr_init(
mpfr_t^ x
)
static member mpfr_init :
x : mpfr_t -> unit
Parameters
- x
- Type: Math.Mpfr.Nativempfr_t
The floating-point number.
Remarks
The default precision can be changed by a call to mpfr_set_default_prec.
Warning!
In a given program, some other libraries might change the default precision and not restore it.
Thus it is safer to use mpfr_init2.
Examples
mpfr_t x = new mpfr_t();
mpfr_lib.mpfr_init2(x, 64U);
Assert.IsTrue(mpfr_lib.mpfr_nan_p(x) != 0);
mpfr_lib.mpfr_clear(x);
Dim x As mpfr_t = New mpfr_t()
mpfr_lib.mpfr_init2(x, 64U)
Assert.IsTrue(mpfr_lib.mpfr_nan_p(x) <> 0)
mpfr_lib.mpfr_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.
See Also