amath  1.8.5
Simple command line calculator
ctan.c
Go to the documentation of this file.
1 /*-
2  * Copyright (c) 2014-2018 Carsten Sonne Larsen <cs@innolan.net>
3  * Copyright (c) 2007 The NetBSD Foundation, Inc.
4  * All rights reserved.
5  *
6  * This code is derived from software written by Stephen L. Moshier.
7  * It is redistributed by the NetBSD Foundation by permission of the author.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  * notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  * notice, this list of conditions and the following disclaimer in the
16  * documentation and/or other materials provided with the distribution.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  *
29  * The original source code can be obtained from:
30  * http://cvsweb.netbsd.org/bsdweb.cgi/src/lib/libm/complex/ctan.c?rev=1.1
31  *
32  * Project homepage:
33  * https://amath.innolan.net
34  *
35  */
36 
37 #include "prim.h"
38 
39 /**
40  * @brief Tangent of a complex number
41  * @details
42  * Calculated as in Open Office:<BR>
43  * https://wiki.openoffice.org/wiki/Documentation/How_Tos/Calc:_IMTAN_function
44  * <pre>
45  * a+bi
46  * sin(2.0 * a)
47  * real = ------------------------------
48  * cos(2.0 * a) + cosh(2.0 * b)
49  *
50  * sinh(2.0 * b)
51  * imag = ------------------------------
52  * cos(2.0 * a) + cosh(2.0 * b)
53  * </pre>
54  */
55 complex ctan(complex z)
56 {
57  complex w;
58  double a, b;
59  double d;
60 
61  a = creal(z);
62  b = cimag(z);
63  d = cos(2.0 * a) + cosh(2.0 * b);
64 
65  if (d == 0.0)
66  {
67  w = cpack((double)INFP, (double)INFP);
68  }
69  else
70  {
71  w = cpack((sin(2.0 * a) / d), (sinh(2.0 * b) / d));
72  }
73 
74  return w;
75 }
double cos(double x)
Cosine function.
Definition: cos.c:87
complex ctan(complex z)
Tangent of a complex number.
Definition: ctan.c:55
double creal(complex z)
Real part of complex number.
Definition: prim.c:38
#define INFP
Definition: mathr.h:51
double sinh(double x)
Hyperbolic sine function.
Definition: sinh.c:77
complex cpack(double x, double y)
Pack two real numbers into a complex number.
Definition: prim.c:68
double cimag(complex z)
Imaginary part of complex number.
Definition: prim.c:46
double cosh(double x)
Hyperbolic cosine function.
Definition: cosh.c:83
double sin(double x)
Sine function.
Definition: sin.c:86