mpfr_libmpfr_hypot Method |
Set rop to the Euclidean norm of x and y, i.e., the square root of the sum of the squares of x and y rounded in the direction rnd.
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_hypot(
mpfr_t rop,
mpfr_t x,
mpfr_t y,
mpfr_rnd_t rnd
)
Public Shared Function mpfr_hypot (
rop As mpfr_t,
x As mpfr_t,
y As mpfr_t,
rnd As mpfr_rnd_t
) As Integer
public:
static int mpfr_hypot(
mpfr_t^ rop,
mpfr_t^ x,
mpfr_t^ y,
mpfr_rnd_t rnd
)
static member mpfr_hypot :
rop : mpfr_t *
x : mpfr_t *
y : mpfr_t *
rnd : mpfr_rnd_t -> int
Parameters
- rop
- Type: Math.Mpfr.Nativempfr_t
The result floating-point number. - x
- Type: Math.Mpfr.Nativempfr_t
The first operand floating-point number. - y
- Type: Math.Mpfr.Nativempfr_t
The second 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
rop is respectively equal to, greater than, or lower than the exact result. See
GNU MPFR - Rounding Modes for details.
Remarks
Special values are handled as described in the ISO C99 (Section F.9.4.3) and IEEE 754-2008 (Section 9.2.1) standards:
If x or y is an infinity, then +Inf is returned in rop, even if the other number is NaN.
Examples
mpfr_t x = new mpfr_t();
mpfr_lib.mpfr_init2(x, 64U);
Assert.IsTrue(mpfr_lib.mpfr_set_si(x, -3, mpfr_rnd_t.MPFR_RNDN) == 0);
mpfr_t y = new mpfr_t();
mpfr_lib.mpfr_init2(y, 64U);
Assert.IsTrue(mpfr_lib.mpfr_set_si(y, 4, mpfr_rnd_t.MPFR_RNDN) == 0);
mpfr_t z = new mpfr_t();
mpfr_lib.mpfr_init2(z, 64U);
Assert.IsTrue(mpfr_lib.mpfr_hypot(z, x, y, mpfr_rnd_t.MPFR_RNDN) == 0);
Assert.IsTrue(mpfr_lib.mpfr_cmp_si(z, 5) == 0);
mpfr_lib.mpfr_clears(x, y, z, null);
Dim x As mpfr_t = New mpfr_t()
mpfr_lib.mpfr_init2(x, 64U)
Assert.IsTrue(mpfr_lib.mpfr_set_si(x, -3, mpfr_rnd_t.MPFR_RNDN) = 0)
Dim y As mpfr_t = New mpfr_t()
mpfr_lib.mpfr_init2(y, 64U)
Assert.IsTrue(mpfr_lib.mpfr_set_si(y, 4, mpfr_rnd_t.MPFR_RNDN) = 0)
Dim z As mpfr_t = New mpfr_t()
mpfr_lib.mpfr_init2(z, 64U)
Assert.IsTrue(mpfr_lib.mpfr_hypot(z, x, y, mpfr_rnd_t.MPFR_RNDN) = 0)
Assert.IsTrue(mpfr_lib.mpfr_cmp_si(z, 5) = 0)
mpfr_lib.mpfr_clears(x, y, z, 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