arb/acb/sin_cos_pi.c
2016-04-26 17:20:05 +02:00

45 lines
1 KiB
C

/*
Copyright (C) 2012 Fredrik Johansson
This file is part of Arb.
Arb is free software: you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License (LGPL) as published
by the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version. See <http://www.gnu.org/licenses/>.
*/
#include "acb.h"
void
acb_sin_cos_pi(acb_t s, acb_t c, const acb_t z, slong prec)
{
#define a acb_realref(z)
#define b acb_imagref(z)
arb_t sa, ca, sb, cb;
arb_init(sa);
arb_init(ca);
arb_init(sb);
arb_init(cb);
arb_const_pi(sb, prec);
arb_mul(sb, sb, b, prec);
arb_sin_cos_pi(sa, ca, a, prec);
arb_sinh_cosh(sb, cb, sb, prec);
arb_mul(acb_realref(s), sa, cb, prec);
arb_mul(acb_imagref(s), sb, ca, prec);
arb_mul(acb_realref(c), ca, cb, prec);
arb_mul(acb_imagref(c), sa, sb, prec);
arb_neg(acb_imagref(c), acb_imagref(c));
arb_clear(sa);
arb_clear(ca);
arb_clear(sb);
arb_clear(cb);
}