summaryrefslogtreecommitdiff
path: root/src/asinh.c
diff options
context:
space:
mode:
authorzimmerma <zimmerma@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2009-09-30 09:17:46 +0000
committerzimmerma <zimmerma@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2009-09-30 09:17:46 +0000
commit2cc15bdcc3a08dd1d9c23ae999cce35cdc187607 (patch)
treeb396e22560336e7f924d1f952d1f75a766af3924 /src/asinh.c
parent1c14dcdd7eb6d920658f2a8abc967e7cb419ab43 (diff)
downloadmpc-2cc15bdcc3a08dd1d9c23ae999cce35cdc187607.tar.gz
merged inverse trigonometric and inverse hyperbolic functions from branch
feature-inverse-trigo git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/trunk@685 211d60ee-9f03-0410-a15a-8952a2c7a4e4
Diffstat (limited to 'src/asinh.c')
-rw-r--r--src/asinh.c46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/asinh.c b/src/asinh.c
new file mode 100644
index 0000000..4b67f9e
--- /dev/null
+++ b/src/asinh.c
@@ -0,0 +1,46 @@
+/* mpc_asinh -- inverse hyperbolic sine of a complex number.
+
+Copyright (C) 2009 Philippe Th\'eveny
+
+This file is part of the MPC Library.
+
+The MPC Library is free software; you can redistribute it and/or modify
+it under the terms of the GNU Lesser General Public License as published by
+the Free Software Foundation; either version 2.1 of the License, or (at your
+option) any later version.
+
+The MPC Library is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+License for more details.
+
+You should have received a copy of the GNU Lesser General Public License
+along with the MPC Library; see the file COPYING.LIB. If not, write to
+the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
+MA 02111-1307, USA. */
+
+#include "mpc-impl.h"
+
+int
+mpc_asinh (mpc_ptr rop, mpc_srcptr op, mpc_rnd_t rnd)
+{
+ /* asinh(op) = -i*asin(i*op) */
+ int inex;
+ mpc_t z;
+ mpfr_t tmp;
+
+ MPC_RE (z)[0] = MPC_IM (op)[0];
+ MPC_IM (z)[0] = MPC_RE (op)[0];
+ MPFR_CHANGE_SIGN (MPC_RE (z));
+
+ inex = mpc_asin (rop, z,
+ RNDC (INV_RND (MPC_RND_IM (rnd)), MPC_RND_RE (rnd)));
+
+ /* change rop to -i*rop */
+ tmp[0] = MPC_RE (rop)[0];
+ MPC_RE (rop)[0] = MPC_IM (rop)[0];
+ MPC_IM (rop)[0] = tmp[0];
+ MPFR_CHANGE_SIGN (MPC_IM (rop));
+
+ return MPC_INEX (MPC_INEX_IM (inex), -MPC_INEX_RE (inex));
+}