Skip to content

Commit ef192ca

Browse files
committed
Update branch cuts intervals in acos, acosh, asin, and asinh
1 parent 963e22a commit ef192ca

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

dpnp/dpnp_iface_trigonometric.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def _get_accumulation_res_dt(a, dtype):
163163
164164
For complex floating-point input data types, :obj:`dpnp.acos` is a complex
165165
analytic function that has, by convention, the branch cuts
166-
:math:`(-\infty, -1]` and :math:`[1, \infty)` and is continuous from above on
166+
:math:`(-\infty, -1)` and :math:`(1, \infty)` and is continuous from above on
167167
the former and from below on the latter.
168168
169169
The inverse cosine is also known as :math:`cos^{-1}`.
@@ -247,7 +247,7 @@ def _get_accumulation_res_dt(a, dtype):
247247
or infinity, it yields ``NaN``.
248248
249249
For complex floating-point input data types, :obj:`dpnp.acosh` is a complex
250-
analytic function that has, by convention, the branch cuts :math:`(-\infty, 1]`
250+
analytic function that has, by convention, the branch cuts :math:`(-\infty, 1)`
251251
and is continuous from above on it.
252252
253253
The inverse hyperbolic cosine is also known as :math:`cosh^{-1}`.
@@ -331,7 +331,7 @@ def _get_accumulation_res_dt(a, dtype):
331331
332332
For complex floating-point input data types, :obj:`dpnp.asin` is a complex
333333
analytic function that has, by convention, the branch cuts
334-
:math:`(-\infty, -1]` and :math:`[1, \infty)` and is continuous from above on
334+
:math:`(-\infty, -1)` and :math:`(1, \infty)` and is continuous from above on
335335
the former and from below on the latter.
336336
337337
The inverse sine is also known as :math:`sin^{-1}`.
@@ -413,7 +413,7 @@ def _get_accumulation_res_dt(a, dtype):
413413
414414
For complex floating-point input data types, :obj:`dpnp.asinh` is a complex
415415
analytic function that has, by convention, the branch cuts
416-
:math:`(-\inftyj, -j]` and :math:`[j, \inftyj)` and is continuous from the left
416+
:math:`(-\infty j, -j)` and :math:`(j, \infty j)` and is continuous from the left
417417
on the former and from the right on the latter.
418418
419419
The inverse hyperbolic sine is also known as :math:`sinh^{-1}`.

0 commit comments

Comments
 (0)