mpfr_libmpfr_set_exp Method |
Set the exponent of x if e is in the current exponent range.
Namespace:
Math.Mpfr.Native
Assembly:
Math.Mpfr.Native (in Math.Mpfr.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static int mpfr_set_exp(
mpfr_t x,
mpfr_exp_t e
)
Public Shared Function mpfr_set_exp (
x As mpfr_t,
e As mpfr_exp_t
) As Integer
public:
static int mpfr_set_exp(
mpfr_t^ x,
mpfr_exp_t e
)
static member mpfr_set_exp :
x : mpfr_t *
e : mpfr_exp_t -> int
Parameters
- x
- Type: Math.Mpfr.Nativempfr_t
The operand floating-point number. - e
- Type: Math.Mpfr.Nativempfr_exp_t
The exponent value.
Return Value
Type:
Int32Return 0 (even if
x is not a non-zero ordinary number); otherwise, return a non-zero value.
Remarks
Set the exponent of x to e if x is a non-zero ordinary number and e
is in the current exponent range, and return 0; otherwise, return a non-zero value (x is not changed).
Examples
mpfr_t x = new mpfr_t();
mpfr_lib.mpfr_init2(x, 64U);
Assert.IsTrue(mpfr_lib.mpfr_set_si(x, 100, mpfr_rnd_t.MPFR_RNDN) == 0);
Assert.IsTrue(mpfr_lib.mpfr_get_exp(x) == 7);
Assert.IsTrue(mpfr_lib.mpfr_set_exp(x, 5) == 0);
Assert.IsTrue(mpfr_lib.mpfr_get_exp(x) == 5);
Assert.IsTrue(mpfr_lib.mpfr_get_d(x, mpfr_rnd_t.MPFR_RNDN) == 25.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_set_si(x, 100, mpfr_rnd_t.MPFR_RNDN) = 0)
Assert.IsTrue(mpfr_lib.mpfr_get_exp(x) = 7)
Assert.IsTrue(mpfr_lib.mpfr_set_exp(x, 5) = 0)
Assert.IsTrue(mpfr_lib.mpfr_get_exp(x) = 5)
Assert.IsTrue(mpfr_lib.mpfr_get_d(x, mpfr_rnd_t.MPFR_RNDN) = 25.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