Click or drag to resize
mpfr_libmpfr_sinh_cosh Method
Set simultaneously sop to the hyperbolic sine of op and cop to the hyperbolic cosine of op, rounded in the direction rnd with the corresponding precision of sop and cop, which must be different variables.

Namespace:  Math.Mpfr.Native
Assembly:  Math.Mpfr.Native (in Math.Mpfr.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static int mpfr_sinh_cosh(
	mpfr_t sop,
	mpfr_t cop,
	mpfr_t op,
	mpfr_rnd_t rnd
)

Parameters

sop
Type: Math.Mpfr.Nativempfr_t
The result hyperbolic sine.
cop
Type: Math.Mpfr.Nativempfr_t
The result hyperbolic cosine.
op
Type: Math.Mpfr.Nativempfr_t
The operand floating-point number.
rnd
Type: Math.Mpfr.Nativempfr_rnd_t
The rounding direction.

Return Value

Type: Int32
Return 0 iff both results are exact (see mpfr_sin_cos for a more detailed description of the return value).
Examples
// Create, initialize, and set a new floating-point number op to 1.
mpfr_t op = new mpfr_t();
mpfr_lib.mpfr_init2(op, 64U);
Assert.IsTrue(mpfr_lib.mpfr_set_si(op, 1, mpfr_rnd_t.MPFR_RNDN) == 0);

// Create and initialize a new floating-point number sop.
mpfr_t sop = new mpfr_t();
mpfr_lib.mpfr_init2(sop, 64U);

// Create and initialize a new floating-point number cop.
mpfr_t cop = new mpfr_t();
mpfr_lib.mpfr_init2(cop, 64U);

// Set sop = sinh(op), cop = cosh(op).
Assert.IsTrue(mpfr_lib.mpfr_sinh_cosh(sop, cop, op, mpfr_rnd_t.MPFR_RNDN) == 10);

// Assert the value of sop and cop.
Assert.IsTrue(sop.ToString() == "0.117520119364380145688e1");
Assert.IsTrue(cop.ToString() == "0.154308063481524377844e1");

// Release unmanaged memory allocated for rop and op.
mpfr_lib.mpfr_clears(sop, cop, op, null);
See Also