| 
									
										
										
										
											2019-05-17 11:55:34 +02:00
										 |  |  | .. highlight:: c
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | .. _complexobjects:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Complex Number Objects
 | 
					
						
							|  |  |  | ----------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-04 11:04:41 +01:00
										 |  |  | .. index:: pair: object; complex number
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Python's complex number objects are implemented as two distinct types when
 | 
					
						
							|  |  |  | viewed from the C API:  one is the Python object exposed to Python programs, and
 | 
					
						
							|  |  |  | the other is a C structure which represents the actual complex number value.
 | 
					
						
							|  |  |  | The API provides functions for working with both.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Complex Numbers as C Structures
 | 
					
						
							|  |  |  | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Note that the functions which accept these structures as parameters and return
 | 
					
						
							|  |  |  | them as results do so *by value* rather than dereferencing them through
 | 
					
						
							|  |  |  | pointers.  This is consistent throughout the API.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | .. c:type:: Py_complex
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    The C structure which corresponds to the value portion of a Python complex
 | 
					
						
							|  |  |  |    number object.  Most of the functions for dealing with complex number objects
 | 
					
						
							| 
									
										
										
										
											2024-07-17 10:01:28 +03:00
										 |  |  |    use structures of this type as input or output values, as appropriate.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    .. c:member:: double real
 | 
					
						
							|  |  |  |                  double imag
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    The structure is defined as::
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |       typedef struct {
 | 
					
						
							| 
									
										
										
										
											2024-07-17 10:01:28 +03:00
										 |  |  |           double real;
 | 
					
						
							|  |  |  |           double imag;
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  |       } Py_complex;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | .. c:function:: Py_complex _Py_c_sum(Py_complex left, Py_complex right)
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  |    Return the sum of two complex numbers, using the C :c:type:`Py_complex`
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  |    representation.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-01 10:40:12 +03:00
										 |  |  |    .. deprecated:: 3.15
 | 
					
						
							|  |  |  |       This function is :term:`soft deprecated`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | .. c:function:: Py_complex _Py_c_diff(Py_complex left, Py_complex right)
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    Return the difference between two complex numbers, using the C
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  |    :c:type:`Py_complex` representation.
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-01 10:40:12 +03:00
										 |  |  |    .. deprecated:: 3.15
 | 
					
						
							|  |  |  |       This function is :term:`soft deprecated`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-16 18:43:49 +01:00
										 |  |  | .. c:function:: Py_complex _Py_c_neg(Py_complex num)
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-16 18:43:49 +01:00
										 |  |  |    Return the negation of the complex number *num*, using the C
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  |    :c:type:`Py_complex` representation.
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-01 10:40:12 +03:00
										 |  |  |    .. deprecated:: 3.15
 | 
					
						
							|  |  |  |       This function is :term:`soft deprecated`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | .. c:function:: Py_complex _Py_c_prod(Py_complex left, Py_complex right)
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  |    Return the product of two complex numbers, using the C :c:type:`Py_complex`
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  |    representation.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-01 10:40:12 +03:00
										 |  |  |    .. deprecated:: 3.15
 | 
					
						
							|  |  |  |       This function is :term:`soft deprecated`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | .. c:function:: Py_complex _Py_c_quot(Py_complex dividend, Py_complex divisor)
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  |    Return the quotient of two complex numbers, using the C :c:type:`Py_complex`
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  |    representation.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-18 01:25:27 +01:00
										 |  |  |    If *divisor* is null, this method returns zero and sets
 | 
					
						
							| 
									
										
										
										
											2023-07-27 02:52:40 +02:00
										 |  |  |    :c:data:`errno` to :c:macro:`!EDOM`.
 | 
					
						
							| 
									
										
										
										
											2011-12-18 01:25:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-01 10:40:12 +03:00
										 |  |  |    .. deprecated:: 3.15
 | 
					
						
							|  |  |  |       This function is :term:`soft deprecated`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | .. c:function:: Py_complex _Py_c_pow(Py_complex num, Py_complex exp)
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  |    Return the exponentiation of *num* by *exp*, using the C :c:type:`Py_complex`
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  |    representation.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-18 02:56:18 +01:00
										 |  |  |    If *num* is null and *exp* is not a positive real number,
 | 
					
						
							| 
									
										
										
										
											2023-07-27 02:52:40 +02:00
										 |  |  |    this method returns zero and sets :c:data:`errno` to :c:macro:`!EDOM`.
 | 
					
						
							| 
									
										
										
										
											2011-12-18 01:25:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-18 11:39:11 +03:00
										 |  |  |    Set :c:data:`errno` to :c:macro:`!ERANGE` on overflows.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-01 10:40:12 +03:00
										 |  |  |    .. deprecated:: 3.15
 | 
					
						
							|  |  |  |       This function is :term:`soft deprecated`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. c:function:: double _Py_c_abs(Py_complex num)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Return the absolute value of the complex number *num*.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Set :c:data:`errno` to :c:macro:`!ERANGE` on overflows.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    .. deprecated:: 3.15
 | 
					
						
							|  |  |  |       This function is :term:`soft deprecated`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Complex Numbers as Python Objects
 | 
					
						
							|  |  |  | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | .. c:type:: PyComplexObject
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  |    This subtype of :c:type:`PyObject` represents a Python complex number object.
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | .. c:var:: PyTypeObject PyComplex_Type
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  |    This instance of :c:type:`PyTypeObject` represents the Python complex number
 | 
					
						
							| 
									
										
										
										
											2010-10-17 10:59:41 +00:00
										 |  |  |    type. It is the same object as :class:`complex` in the Python layer.
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | .. c:function:: int PyComplex_Check(PyObject *p)
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  |    Return true if its argument is a :c:type:`PyComplexObject` or a subtype of
 | 
					
						
							| 
									
										
										
										
											2021-01-06 12:38:26 +01:00
										 |  |  |    :c:type:`PyComplexObject`.  This function always succeeds.
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | .. c:function:: int PyComplex_CheckExact(PyObject *p)
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  |    Return true if its argument is a :c:type:`PyComplexObject`, but not a subtype of
 | 
					
						
							| 
									
										
										
										
											2021-01-06 12:38:26 +01:00
										 |  |  |    :c:type:`PyComplexObject`.  This function always succeeds.
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | .. c:function:: PyObject* PyComplex_FromCComplex(Py_complex v)
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  |    Create a new Python complex number object from a C :c:type:`Py_complex` value.
 | 
					
						
							| 
									
										
										
										
											2024-07-17 10:01:28 +03:00
										 |  |  |    Return ``NULL`` with an exception set on error.
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | .. c:function:: PyObject* PyComplex_FromDoubles(double real, double imag)
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  |    Return a new :c:type:`PyComplexObject` object from *real* and *imag*.
 | 
					
						
							| 
									
										
										
										
											2024-07-17 10:01:28 +03:00
										 |  |  |    Return ``NULL`` with an exception set on error.
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | .. c:function:: double PyComplex_RealAsDouble(PyObject *op)
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-05 19:01:14 +01:00
										 |  |  |    Return the real part of *op* as a C :c:expr:`double`.
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-15 18:04:17 +03:00
										 |  |  |    If *op* is not a Python complex number object but has a
 | 
					
						
							|  |  |  |    :meth:`~object.__complex__` method, this method will first be called to
 | 
					
						
							|  |  |  |    convert *op* to a Python complex number object.  If :meth:`!__complex__` is
 | 
					
						
							|  |  |  |    not defined then it falls back to call :c:func:`PyFloat_AsDouble` and
 | 
					
						
							| 
									
										
										
										
											2024-07-17 10:01:28 +03:00
										 |  |  |    returns its result.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Upon failure, this method returns ``-1.0`` with an exception set, so one
 | 
					
						
							| 
									
										
										
										
											2024-01-15 18:04:17 +03:00
										 |  |  |    should call :c:func:`PyErr_Occurred` to check for errors.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    .. versionchanged:: 3.13
 | 
					
						
							|  |  |  |       Use :meth:`~object.__complex__` if available.
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | .. c:function:: double PyComplex_ImagAsDouble(PyObject *op)
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-05 19:01:14 +01:00
										 |  |  |    Return the imaginary part of *op* as a C :c:expr:`double`.
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-15 18:04:17 +03:00
										 |  |  |    If *op* is not a Python complex number object but has a
 | 
					
						
							|  |  |  |    :meth:`~object.__complex__` method, this method will first be called to
 | 
					
						
							|  |  |  |    convert *op* to a Python complex number object.  If :meth:`!__complex__` is
 | 
					
						
							|  |  |  |    not defined then it falls back to call :c:func:`PyFloat_AsDouble` and
 | 
					
						
							| 
									
										
										
										
											2024-07-17 10:01:28 +03:00
										 |  |  |    returns ``0.0`` on success.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Upon failure, this method returns ``-1.0`` with an exception set, so one
 | 
					
						
							|  |  |  |    should call :c:func:`PyErr_Occurred` to check for errors.
 | 
					
						
							| 
									
										
										
										
											2024-01-15 18:04:17 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |    .. versionchanged:: 3.13
 | 
					
						
							|  |  |  |       Use :meth:`~object.__complex__` if available.
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | .. c:function:: Py_complex PyComplex_AsCComplex(PyObject *op)
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  |    Return the :c:type:`Py_complex` value of the complex number *op*.
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-30 23:27:09 +09:00
										 |  |  |    If *op* is not a Python complex number object but has a :meth:`~object.__complex__`
 | 
					
						
							| 
									
										
										
										
											2008-01-20 09:30:57 +00:00
										 |  |  |    method, this method will first be called to convert *op* to a Python complex
 | 
					
						
							| 
									
										
										
										
											2023-06-30 23:27:09 +09:00
										 |  |  |    number object.  If :meth:`!__complex__` is not defined then it falls back to
 | 
					
						
							|  |  |  |    :meth:`~object.__float__`.  If :meth:`!__float__` is not defined then it falls back
 | 
					
						
							| 
									
										
										
										
											2024-07-17 10:01:28 +03:00
										 |  |  |    to :meth:`~object.__index__`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Upon failure, this method returns :c:type:`Py_complex`
 | 
					
						
							|  |  |  |    with :c:member:`~Py_complex.real` set to ``-1.0`` and with an exception set, so one
 | 
					
						
							|  |  |  |    should call :c:func:`PyErr_Occurred` to check for errors.
 | 
					
						
							| 
									
										
										
										
											2019-06-02 00:05:48 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |    .. versionchanged:: 3.8
 | 
					
						
							| 
									
										
										
										
											2023-06-30 23:27:09 +09:00
										 |  |  |       Use :meth:`~object.__index__` if available.
 |