You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Calculates an implementation-dependent approximation of the principal value of the inverse cosine, having domain ``[-1, +1]`` and codomain ``[+0, +π]``, for each element ``x_i`` of the input array ``x``. Each element-wise result is expressed in radians.
30
+
r"""
31
+
Calculates an implementation-dependent approximation of the principal value of the inverse cosine for each element ``x_i`` of the input array ``x``.
32
+
33
+
Each element-wise result is expressed in radians.
32
34
33
35
**Special cases**
34
36
35
-
For floating-point operands,
37
+
For real-valued floating-point operands,
36
38
37
39
- If ``x_i`` is ``NaN``, the result is ``NaN``.
38
40
- If ``x_i`` is greater than ``1``, the result is ``NaN``.
39
41
- If ``x_i`` is less than ``-1``, the result is ``NaN``.
40
42
- If ``x_i`` is ``1``, the result is ``+0``.
41
43
44
+
For complex floating-point operands, let ``a = real(x_i)``, ``b = imag(x_i)``, and
45
+
46
+
- If ``a`` is either ``+0`` or ``-0`` and ``b`` is ``+0``, the result is ``π/2 - 0j``.
47
+
- If ``a`` is either ``+0`` or ``-0`` and ``b`` is ``NaN``, the result is ``π/2 + NaN j``.
48
+
- If ``a`` is a finite number and ``b`` is ``+infinity``, the result is ``π/2 - infinity j``.
49
+
- If ``a`` is a nonzero finite number and ``b`` is ``NaN``, the result is ``NaN + NaN j``.
50
+
- If ``a`` is ``-infinity`` and ``b`` is a positive (i.e., greater than ``0``) finite number, the result is ``π - infinity j``.
51
+
- If ``a`` is ``+infinity`` and ``b`` is a positive (i.e., greater than ``0``) finite number, the result is ``+0 - infinity j``.
52
+
- If ``a`` is ``-infinity`` and ``b`` is ``+infinity``, the result is ``3π/4 - infinity j``.
53
+
- If ``a`` is ``+infinity`` and ``b`` is ``+infinity``, the result is ``π/4 - infinity j``.
54
+
- If ``a`` is either ``+infinity`` or ``-infinity`` and ``b`` is ``NaN``, the result is ``NaN ± infinity j`` (sign of the imaginary component is unspecified).
55
+
- If ``a`` is ``NaN`` and ``b`` is a finite number, the result is ``NaN + NaN j``.
56
+
- If ``a`` is ``NaN`` and ``b`` is ``+infinity``, the result is ``NaN - infinity j``.
57
+
- If ``a`` is ``NaN`` and ``b`` is ``NaN``, the result is ``NaN + NaN j``.
58
+
59
+
.. note::
60
+
The principal value of the arc cosine of a complex number :math:`z` is
For complex floating-point operands, ``acos(conj(x))`` must equal ``conj(acos(x))``.
72
+
73
+
.. note::
74
+
The inverse cosine (or arc cosine) is a multi-valued function and requires a branch cut on the complex plane. By convention, a branch cut is placed at the line segments :math:`(-\infty, -1)` and :math:`(1, \infty)` of the real axis.
75
+
76
+
Accordingly, for complex arguments, the function returns the inverse cosine in the range of a strip unbounded along the imaginary axis and in the interval :math:`[0, \pi]` along the real axis.
77
+
78
+
*Note: branch cuts have provisional status* (see :ref:`branch-cuts`).
79
+
42
80
Parameters
43
81
----------
44
82
x: array
45
-
input array. Should have a real-valued floating-point data type.
83
+
input array. Should have a floating-point data type.
46
84
47
85
Returns
48
86
-------
49
87
out: array
50
-
an array containing the inverse cosine of each element in ``x``. The returned array must have a real-valued floating-point data type determined by :ref:`type-promotion`.
88
+
an array containing the inverse cosine of each element in ``x``. The returned array must have a floating-point data type determined by :ref:`type-promotion`.
0 commit comments