mpfr_libmpfr_set_zero Method |
Namespace: Math.Mpfr.Native
public static void mpfr_set_zero( mpfr_t x, int sign )
Public Shared Sub mpfr_set_zero ( x As mpfr_t, sign As Integer )
public: static void mpfr_set_zero( mpfr_t^ x, int sign )
static member mpfr_set_zero : x : mpfr_t * sign : int -> unit
Inmpfr_set_zero, x is set to plus zero iff sign is nonnegative.
// Create, initialize, and set a new floating-point number x to +0. mpfr_t x = new mpfr_t(); mpfr_lib.mpfr_init2(x, 64U); mpfr_lib.mpfr_set_zero(x, 1); // Assert x is 0. Assert.IsTrue(mpfr_lib.mpfr_zero_p(x) != 0); // Release unmanaged memory allocated for x. mpfr_lib.mpfr_clear(x);
' Create, initialize, and set a new floating-point number x to +0. Dim x As mpfr_t = New mpfr_t() mpfr_lib.mpfr_init2(x, 64U) mpfr_lib.mpfr_set_zero(x, 1) ' Assert x is 0. Assert.IsTrue(mpfr_lib.mpfr_zero_p(x) <> 0) ' Release unmanaged memory allocated for x. 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.