Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 1 | .. highlightlang:: c |
| 2 | |
| 3 | .. _complexobjects: |
| 4 | |
| 5 | Complex Number Objects |
| 6 | ---------------------- |
| 7 | |
| 8 | .. index:: object: complex number |
| 9 | |
| 10 | Python's complex number objects are implemented as two distinct types when |
| 11 | viewed from the C API: one is the Python object exposed to Python programs, and |
| 12 | the other is a C structure which represents the actual complex number value. |
| 13 | The API provides functions for working with both. |
| 14 | |
| 15 | |
| 16 | Complex Numbers as C Structures |
| 17 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 18 | |
| 19 | Note that the functions which accept these structures as parameters and return |
| 20 | them as results do so *by value* rather than dereferencing them through |
| 21 | pointers. This is consistent throughout the API. |
| 22 | |
| 23 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 24 | .. c:type:: Py_complex |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 25 | |
| 26 | The C structure which corresponds to the value portion of a Python complex |
| 27 | number object. Most of the functions for dealing with complex number objects |
| 28 | use structures of this type as input or output values, as appropriate. It is |
| 29 | defined as:: |
| 30 | |
| 31 | typedef struct { |
| 32 | double real; |
| 33 | double imag; |
| 34 | } Py_complex; |
| 35 | |
| 36 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 37 | .. c:function:: Py_complex _Py_c_sum(Py_complex left, Py_complex right) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 38 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 39 | Return the sum of two complex numbers, using the C :c:type:`Py_complex` |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 40 | representation. |
| 41 | |
| 42 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 43 | .. c:function:: Py_complex _Py_c_diff(Py_complex left, Py_complex right) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 44 | |
| 45 | Return the difference between two complex numbers, using the C |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 46 | :c:type:`Py_complex` representation. |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 47 | |
| 48 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 49 | .. c:function:: Py_complex _Py_c_neg(Py_complex complex) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 50 | |
| 51 | Return the negation of the complex number *complex*, using the C |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 52 | :c:type:`Py_complex` representation. |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 53 | |
| 54 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 55 | .. c:function:: Py_complex _Py_c_prod(Py_complex left, Py_complex right) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 56 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 57 | Return the product of two complex numbers, using the C :c:type:`Py_complex` |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 58 | representation. |
| 59 | |
| 60 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 61 | .. c:function:: Py_complex _Py_c_quot(Py_complex dividend, Py_complex divisor) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 62 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 63 | Return the quotient of two complex numbers, using the C :c:type:`Py_complex` |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 64 | representation. |
| 65 | |
Antoine Pitrou | c9e1800 | 2011-12-18 01:25:27 +0100 | [diff] [blame] | 66 | If *divisor* is null, this method returns zero and sets |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 67 | :c:data:`errno` to :c:data:`EDOM`. |
Antoine Pitrou | c9e1800 | 2011-12-18 01:25:27 +0100 | [diff] [blame] | 68 | |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 69 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 70 | .. c:function:: Py_complex _Py_c_pow(Py_complex num, Py_complex exp) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 71 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 72 | Return the exponentiation of *num* by *exp*, using the C :c:type:`Py_complex` |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 73 | representation. |
| 74 | |
Victor Stinner | cc1a086 | 2011-12-18 02:56:18 +0100 | [diff] [blame] | 75 | If *num* is null and *exp* is not a positive real number, |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 76 | this method returns zero and sets :c:data:`errno` to :c:data:`EDOM`. |
Antoine Pitrou | c9e1800 | 2011-12-18 01:25:27 +0100 | [diff] [blame] | 77 | |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 78 | |
| 79 | Complex Numbers as Python Objects |
| 80 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 81 | |
| 82 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 83 | .. c:type:: PyComplexObject |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 84 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 85 | This subtype of :c:type:`PyObject` represents a Python complex number object. |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 86 | |
| 87 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 88 | .. c:var:: PyTypeObject PyComplex_Type |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 89 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 90 | This instance of :c:type:`PyTypeObject` represents the Python complex number |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 91 | type. It is the same object as ``complex`` and ``types.ComplexType``. |
| 92 | |
| 93 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 94 | .. c:function:: int PyComplex_Check(PyObject *p) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 95 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 96 | Return true if its argument is a :c:type:`PyComplexObject` or a subtype of |
| 97 | :c:type:`PyComplexObject`. |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 98 | |
| 99 | .. versionchanged:: 2.2 |
| 100 | Allowed subtypes to be accepted. |
| 101 | |
| 102 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 103 | .. c:function:: int PyComplex_CheckExact(PyObject *p) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 104 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 105 | Return true if its argument is a :c:type:`PyComplexObject`, but not a subtype of |
| 106 | :c:type:`PyComplexObject`. |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 107 | |
| 108 | .. versionadded:: 2.2 |
| 109 | |
| 110 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 111 | .. c:function:: PyObject* PyComplex_FromCComplex(Py_complex v) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 112 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 113 | Create a new Python complex number object from a C :c:type:`Py_complex` value. |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 114 | |
| 115 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 116 | .. c:function:: PyObject* PyComplex_FromDoubles(double real, double imag) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 117 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 118 | Return a new :c:type:`PyComplexObject` object from *real* and *imag*. |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 119 | |
| 120 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 121 | .. c:function:: double PyComplex_RealAsDouble(PyObject *op) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 122 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 123 | Return the real part of *op* as a C :c:type:`double`. |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 124 | |
| 125 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 126 | .. c:function:: double PyComplex_ImagAsDouble(PyObject *op) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 127 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 128 | Return the imaginary part of *op* as a C :c:type:`double`. |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 129 | |
| 130 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 131 | .. c:function:: Py_complex PyComplex_AsCComplex(PyObject *op) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 132 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 133 | Return the :c:type:`Py_complex` value of the complex number *op*. |
Antoine Pitrou | c9e1800 | 2011-12-18 01:25:27 +0100 | [diff] [blame] | 134 | Upon failure, this method returns ``-1.0`` as a real value. |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 135 | |
| 136 | .. versionchanged:: 2.6 |
| 137 | If *op* is not a Python complex number object but has a :meth:`__complex__` |
| 138 | method, this method will first be called to convert *op* to a Python complex |
| 139 | number object. |