blob: 90e9c0309137ed68b0b741a2b5299ba3c6e9d7e1 [file] [log] [blame]
Georg Brandlf6842722008-01-19 22:08:21 +00001.. highlightlang:: c
2
3.. _complexobjects:
4
5Complex Number Objects
6----------------------
7
8.. index:: object: complex number
9
10Python's complex number objects are implemented as two distinct types when
11viewed from the C API: one is the Python object exposed to Python programs, and
12the other is a C structure which represents the actual complex number value.
13The API provides functions for working with both.
14
15
16Complex Numbers as C Structures
17^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
18
19Note that the functions which accept these structures as parameters and return
20them as results do so *by value* rather than dereferencing them through
21pointers. This is consistent throughout the API.
22
23
24.. ctype:: Py_complex
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
37.. cfunction:: Py_complex _Py_c_sum(Py_complex left, Py_complex right)
38
39 Return the sum of two complex numbers, using the C :ctype:`Py_complex`
40 representation.
41
42
43.. cfunction:: Py_complex _Py_c_diff(Py_complex left, Py_complex right)
44
45 Return the difference between two complex numbers, using the C
46 :ctype:`Py_complex` representation.
47
48
49.. cfunction:: Py_complex _Py_c_neg(Py_complex complex)
50
51 Return the negation of the complex number *complex*, using the C
52 :ctype:`Py_complex` representation.
53
54
55.. cfunction:: Py_complex _Py_c_prod(Py_complex left, Py_complex right)
56
57 Return the product of two complex numbers, using the C :ctype:`Py_complex`
58 representation.
59
60
61.. cfunction:: Py_complex _Py_c_quot(Py_complex dividend, Py_complex divisor)
62
63 Return the quotient of two complex numbers, using the C :ctype:`Py_complex`
64 representation.
65
Antoine Pitrouc9e18002011-12-18 01:25:27 +010066 If *divisor* is null, this method returns zero and sets
67 :cdata:`errno` to :cdata:`EDOM`.
68
Georg Brandlf6842722008-01-19 22:08:21 +000069
70.. cfunction:: Py_complex _Py_c_pow(Py_complex num, Py_complex exp)
71
72 Return the exponentiation of *num* by *exp*, using the C :ctype:`Py_complex`
73 representation.
74
Victor Stinnercc1a0862011-12-18 02:56:18 +010075 If *num* is null and *exp* is not a positive real number,
Antoine Pitrouc9e18002011-12-18 01:25:27 +010076 this method returns zero and sets :cdata:`errno` to :cdata:`EDOM`.
77
Georg Brandlf6842722008-01-19 22:08:21 +000078
79Complex Numbers as Python Objects
80^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
81
82
83.. ctype:: PyComplexObject
84
85 This subtype of :ctype:`PyObject` represents a Python complex number object.
86
87
88.. cvar:: PyTypeObject PyComplex_Type
89
90 This instance of :ctype:`PyTypeObject` represents the Python complex number
91 type. It is the same object as ``complex`` and ``types.ComplexType``.
92
93
94.. cfunction:: int PyComplex_Check(PyObject *p)
95
96 Return true if its argument is a :ctype:`PyComplexObject` or a subtype of
97 :ctype:`PyComplexObject`.
98
99 .. versionchanged:: 2.2
100 Allowed subtypes to be accepted.
101
102
103.. cfunction:: int PyComplex_CheckExact(PyObject *p)
104
105 Return true if its argument is a :ctype:`PyComplexObject`, but not a subtype of
106 :ctype:`PyComplexObject`.
107
108 .. versionadded:: 2.2
109
110
111.. cfunction:: PyObject* PyComplex_FromCComplex(Py_complex v)
112
113 Create a new Python complex number object from a C :ctype:`Py_complex` value.
114
115
116.. cfunction:: PyObject* PyComplex_FromDoubles(double real, double imag)
117
118 Return a new :ctype:`PyComplexObject` object from *real* and *imag*.
119
120
121.. cfunction:: double PyComplex_RealAsDouble(PyObject *op)
122
123 Return the real part of *op* as a C :ctype:`double`.
124
125
126.. cfunction:: double PyComplex_ImagAsDouble(PyObject *op)
127
128 Return the imaginary part of *op* as a C :ctype:`double`.
129
130
131.. cfunction:: Py_complex PyComplex_AsCComplex(PyObject *op)
132
133 Return the :ctype:`Py_complex` value of the complex number *op*.
Antoine Pitrouc9e18002011-12-18 01:25:27 +0100134 Upon failure, this method returns ``-1.0`` as a real value.
Georg Brandlf6842722008-01-19 22:08:21 +0000135
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.