amath  1.8.5
Simple command line calculator
cpow.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/cpow.c?rev=1.1
31  *
32  * Project homepage:
33  * https://amath.innolan.net
34  *
35  */
36 
37 #include "prim.h"
38 
39 /**
40  * @brief Complex number raised to a power
41  */
42 complex cpow(complex a, complex z)
43 {
44  complex w;
45  double x, y, r, theta, absa, arga;
46 
47  x = creal(z);
48  y = cimag(z);
49  absa = cabs(a);
50  if (absa == 0.0)
51  {
52  return cpack(0.0, + 0.0);
53  }
54  arga = atan2(cimag(a), creal(a));
55 
56  r = pow(absa, x);
57  theta = x * arga;
58  if (y != 0.0)
59  {
60  r = r * exp(-y * arga);
61  theta = theta + y * log(absa);
62  }
63 
64  w = cpack(r * cos(theta), r * sin(theta));
65  return w;
66 }
double log(double x)
Natural logarithm function (base e)
Definition: log.c:109
double cos(double x)
Cosine function.
Definition: cos.c:87
double pow(double x, double y)
Expontation function.
Definition: pow.c:138
complex cpow(complex x, complex z)
Complex number raised to a power.
Definition: cpow.c:42
double creal(complex z)
Real part of complex number.
Definition: prim.c:38
double cabs(complex z)
Absolute value of complex number.
Definition: prim.c:54
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 atan2(double y, double x)
Inverse tangent function.
Definition: atan2.c:87
double sin(double x)
Sine function.
Definition: sin.c:86
double exp(double x)
Returns the exponential of x.
Definition: exp.c:138