mpfr_libmpfr_set_inf Method |
Set the variable x to infinity.
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_set_inf(
mpfr_t x,
int sign
)
Public Shared Sub mpfr_set_inf (
x As mpfr_t,
sign As Integer
)
public:
static void mpfr_set_inf(
mpfr_t^ x,
int sign
)
static member mpfr_set_inf :
x : mpfr_t *
sign : int -> unit
Parameters
- x
- Type: Math.Mpfr.Nativempfr_t
The result floating-point number. - sign
- Type: SystemInt32
The sign of the result.
Remarks
In mpfr_set_inf, x is set to plus infinity iff sign is nonnegative.
Examples
mpfr_t x = new mpfr_t();
mpfr_lib.mpfr_init2(x, 64U);
mpfr_lib.mpfr_set_inf(x, -1);
Assert.IsTrue(mpfr_lib.mpfr_inf_p(x) != 0);
mpfr_lib.mpfr_clear(x);
Dim x As mpfr_t = New mpfr_t()
mpfr_lib.mpfr_init2(x, 64U)
mpfr_lib.mpfr_set_inf(x, -1)
Assert.IsTrue(mpfr_lib.mpfr_inf_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