Method: MPFR#cos

Defined in:
ext/mpfr_rb.c

#cos(v, round: MPFR.default_rounding) ⇒ Integer

Set self to the cosine of v, rounded in the direction round.

Returns:



2718
2719
2720
2721
# File 'ext/mpfr_rb.c', line 2718

static VALUE mpfrrb_cos(int argc, VALUE *argv, VALUE self)
{
	MPFRRB_ONE_ARG_FUNC_BODY(cos);
}