mpfr_libmpfr_frexp Method (mpfr_exp_t, mpfr_t, mpfr_t, mpfr_rnd_t) |
Set exp and y such that 0.5 ≤ abs(y) < 1 and y * 2^exp = x rounded to the precision of y, using the given rounding mode.
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_frexp(
ref mpfr_exp_t exp,
mpfr_t y,
mpfr_t x,
mpfr_rnd_t rnd
)
Public Shared Function mpfr_frexp (
ByRef exp As mpfr_exp_t,
y As mpfr_t,
x As mpfr_t,
rnd As mpfr_rnd_t
) As Integer
public:
static int mpfr_frexp(
mpfr_exp_t% exp,
mpfr_t^ y,
mpfr_t^ x,
mpfr_rnd_t rnd
)
static member mpfr_frexp :
exp : mpfr_exp_t byref *
y : mpfr_t *
x : mpfr_t *
rnd : mpfr_rnd_t -> int
Parameters
- exp
- Type: Math.Mpfr.Nativempfr_exp_t
The returned exponent. - y
- Type: Math.Mpfr.Nativempfr_t
The returned significand. - x
- Type: Math.Mpfr.Nativempfr_t
The operand floating-point number. - rnd
- Type: Math.Mpfr.Nativempfr_rnd_t
The rounding direction.
Return Value
Type:
Int32Return zero, a positive, or a negative value if
y is respectively equal to, greater than, or lower than the exact result. See
GNU MPFR - Rounding Modes for details.
Remarks
If x is zero, then y is set to a zero of the same sign and exp is set to 0.
If x is NaN or an infinity, then y is set to the same value and exp is undefined.
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);
mpfr_t y = new mpfr_t();
mpfr_lib.mpfr_init2(y, 64U);
mpfr_exp_t exp = 0;
Assert.IsTrue(mpfr_lib.mpfr_frexp(ref exp, y, x, mpfr_rnd_t.MPFR_RNDN) == 0);
Assert.IsTrue(y.ToString() == "0.781250000000000000000e0" && exp == 7);
mpfr_lib.mpfr_clears(x, y, null);
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)
Dim y As mpfr_t = New mpfr_t()
mpfr_lib.mpfr_init2(y, 64U)
Dim exp As mpfr_exp_t = 0
Assert.IsTrue(mpfr_lib.mpfr_frexp( exp,y,x,mpfr_rnd_t.MPFR_RNDN) = 0)
Assert.IsTrue(y.ToString() = "0.781250000000000000000e0" AndAlso exp = 7)
mpfr_lib.mpfr_clears(x, y, 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