xref: /dflybsd-src/contrib/openbsd_libm/src/s_csinhf.c (revision 4382f29d99a100bd77a81697c2f699c11f6a472a)
1*05a0b428SJohn Marino /*	$OpenBSD: s_csinhf.c,v 1.2 2010/07/18 18:42:26 guenther Exp $	*/
2*05a0b428SJohn Marino /*
3*05a0b428SJohn Marino  * Copyright (c) 2008 Stephen L. Moshier <steve@moshier.net>
4*05a0b428SJohn Marino  *
5*05a0b428SJohn Marino  * Permission to use, copy, modify, and distribute this software for any
6*05a0b428SJohn Marino  * purpose with or without fee is hereby granted, provided that the above
7*05a0b428SJohn Marino  * copyright notice and this permission notice appear in all copies.
8*05a0b428SJohn Marino  *
9*05a0b428SJohn Marino  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10*05a0b428SJohn Marino  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11*05a0b428SJohn Marino  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12*05a0b428SJohn Marino  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13*05a0b428SJohn Marino  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14*05a0b428SJohn Marino  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15*05a0b428SJohn Marino  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16*05a0b428SJohn Marino  */
17*05a0b428SJohn Marino 
18*05a0b428SJohn Marino /*							csinhf
19*05a0b428SJohn Marino  *
20*05a0b428SJohn Marino  *	Complex hyperbolic sine
21*05a0b428SJohn Marino  *
22*05a0b428SJohn Marino  *
23*05a0b428SJohn Marino  *
24*05a0b428SJohn Marino  * SYNOPSIS:
25*05a0b428SJohn Marino  *
26*05a0b428SJohn Marino  * float complex csinhf();
27*05a0b428SJohn Marino  * float complex z, w;
28*05a0b428SJohn Marino  *
29*05a0b428SJohn Marino  * w = csinhf (z);
30*05a0b428SJohn Marino  *
31*05a0b428SJohn Marino  * DESCRIPTION:
32*05a0b428SJohn Marino  *
33*05a0b428SJohn Marino  * csinh z = (cexp(z) - cexp(-z))/2
34*05a0b428SJohn Marino  *         = sinh x * cos y  +  i cosh x * sin y .
35*05a0b428SJohn Marino  *
36*05a0b428SJohn Marino  * ACCURACY:
37*05a0b428SJohn Marino  *
38*05a0b428SJohn Marino  *                      Relative error:
39*05a0b428SJohn Marino  * arithmetic   domain     # trials      peak         rms
40*05a0b428SJohn Marino  *    IEEE      -10,+10     30000       3.1e-16     8.2e-17
41*05a0b428SJohn Marino  *
42*05a0b428SJohn Marino  */
43*05a0b428SJohn Marino 
44*05a0b428SJohn Marino #include <complex.h>
45*05a0b428SJohn Marino #include <math.h>
46*05a0b428SJohn Marino 
47*05a0b428SJohn Marino float complex
csinhf(float complex z)48*05a0b428SJohn Marino csinhf(float complex z)
49*05a0b428SJohn Marino {
50*05a0b428SJohn Marino 	float complex w;
51*05a0b428SJohn Marino 	float x, y;
52*05a0b428SJohn Marino 
53*05a0b428SJohn Marino 	x = crealf(z);
54*05a0b428SJohn Marino 	y = cimagf(z);
55*05a0b428SJohn Marino 	w = sinhf (x) * cosf (y)  +  (coshf (x) * sinf (y)) * I;
56*05a0b428SJohn Marino 	return (w);
57*05a0b428SJohn Marino }
58