cmath — Mathematical functions for complex numbers¶
This module provides access to mathematical functions for complex numbers. The
functions in this module accept integers, floating-point numbers or complex
numbers as arguments. They will also accept any Python object that has either a
__complex__() or a __float__() method: these methods are used to
convert the object to a complex or floating-point number, respectively, and
the function is then applied to the result of the conversion.
Note
For functions involving branch cuts, we have the problem of deciding how to define those functions on the cut itself. Following Kahan’s “Branch cuts for complex elementary functions” paper, as well as Annex G of C99 and later C standards, we use the sign of zero to distinguish one side of the branch cut from the other: for a branch cut along (a portion of) the real axis we look at the sign of the imaginary part, while for a branch cut along the imaginary axis we look at the sign of the real part.
For example, the cmath.sqrt() function has a branch cut along the
negative real axis. An argument of -2-0j is treated as
though it lies below the branch cut, and so gives a result on the negative
imaginary axis:
>>> cmath.sqrt(-2-0j)
-1.4142135623730951j
But an argument of -2+0j is treated as though it lies above
the branch cut:
>>> cmath.sqrt(-2+0j)
1.4142135623730951j
Conversions to and from polar coordinates |
|
Return the phase of z |
|
Return the representation of z in polar coordinates |
|
Return the complex number z with polar coordinates r and phi |
|
Power and logarithmic functions |
|
Return e raised to the power z |
|
Return the logarithm of z to the given base (e by default) |
|
Return the base-10 logarithm of z |
|
Return the square root of z |
|
Trigonometric functions |
|
Return the arc cosine of z |
|
Return the arc sine of z |
|
Return the arc tangent of z |
|
Return the cosine of z |
|
Return the sine of z |
|
Return the tangent of z |
|
Hyperbolic functions |
|
Return the inverse hyperbolic cosine of z |
|
Return the inverse hyperbolic sine of z |
|
Return the inverse hyperbolic tangent of z |
|
Return the hyperbolic cosine of z |
|
Return the hyperbolic sine of z |
|
Return the hyperbolic tangent of z |
|
Classification functions |
|
Check if all components of z are finite |
|
Check if any component of z is infinite |
|
Check if any component of z is a NaN |
|
Check if the values a and b are close to each other |
|
Constants |
|
π = 3.141592… |
|
e = 2.718281… |
|
τ = 2π = 6.283185… |
|
Positive infinity |
|
Pure imaginary infinity |
|
“Not a number” (NaN) |
|
Pure imaginary NaN |
|
Conversions to and from polar coordinates¶
A Python complex number z is stored internally using rectangular
or Cartesian coordinates. It is completely determined by its real
part z.real and its imaginary part z.imag.
Polar coordinates give an alternative way to represent a complex number. In polar coordinates, a complex number z is defined by the modulus r and the phase angle phi. The modulus r is the distance from z to the origin, while the phase phi is the counterclockwise angle, measured in radians, from the positive x-axis to the line segment that joins the origin to z.
The following functions can be used to convert from the native rectangular coordinates to polar coordinates and back.
- cmath.phase(z)¶
Return the phase of z (also known as the argument of z), as a float.
phase(z)is equivalent tomath.atan2(z.imag, z.real). The result lies in the range [-π, π], and the branch cut for this operation lies along the negative real axis. The sign of the result is the same as the sign ofz.imag, even whenz.imagis zero:>>> phase(-1+0j) 3.141592653589793 >>> phase(-1-0j) -3.141592653589793
Note
The modulus (absolute value) of a complex number z can be
computed using the built-in abs() function. There is no
separate cmath module function for this operation.
- cmath.polar(z)¶
Return the representation of z in polar coordinates. Returns a pair
(r, phi)where r is the modulus of z and phi is the phase of z.polar(z)is equivalent to(abs(z), phase(z)).
- cmath.rect(r, phi)¶
Return the complex number z with polar coordinates r and phi. Equivalent to
complex(r * math.cos(phi), r * math.sin(phi)).