@@ -315,7 +315,7 @@ def _get_accumulation_res_dt(a, dtype):
315
315
:obj:`dpnp.acos` : Trigonometric inverse cosine, element-wise.
316
316
:obj:`dpnp.tan` : Trigonometric tangent, element-wise.
317
317
:obj:`dpnp.atan` : Trigonometric inverse tangent, element-wise.
318
- :obj:`dpnp.atan2` : Element-wise arc tangent of :math:`\frac{x1}/ {x2}`
318
+ :obj:`dpnp.atan2` : Element-wise arc tangent of :math:`\frac{x1}{x2}`
319
319
choosing the quadrant correctly.
320
320
:obj:`dpnp.asinh` : Hyperbolic inverse sine, element-wise.
321
321
@@ -477,7 +477,7 @@ def _get_accumulation_res_dt(a, dtype):
477
477
478
478
See Also
479
479
--------
480
- :obj:`dpnp.atan2` : Element-wise arc tangent of :math:`\frac{x1}/ {x2}`
480
+ :obj:`dpnp.atan2` : Element-wise arc tangent of :math:`\frac{x1}{x2}`
481
481
choosing the quadrant correctly.
482
482
:obj:`dpnp.angle` : Argument of complex values.
483
483
:obj:`dpnp.tan` : Trigonometric tangent, element-wise.
@@ -523,9 +523,9 @@ def _get_accumulation_res_dt(a, dtype):
523
523
arctan = atan # arctan is an alias for atan
524
524
525
525
526
- _ATAN2_DOCSTRING = """
527
- Calculates the inverse tangent of the quotient :math:`x1_i/ x2_i` for each
528
- element :math:`x1_i` of the input array `x1` with the respective element
526
+ _ATAN2_DOCSTRING = r """
527
+ Calculates the inverse tangent of the quotient :math:`\frac{ x1_i}{ x2_i} ` for
528
+ each element :math:`x1_i` of the input array `x1` with the respective element
529
529
:math:`x2_i` of the input array `x2`.
530
530
531
531
Note that :obj:`dpnp.arctan2` is an alias of :obj:`dpnp.atan2`.
@@ -555,7 +555,7 @@ def _get_accumulation_res_dt(a, dtype):
555
555
-------
556
556
out : dpnp.ndarray
557
557
An array containing the inverse tangent of the quotient
558
- :math:`\f rac{x1}/ {x2}`, in radians. The returned array must have a
558
+ :math:`\frac{x1}{x2}`, in radians. The returned array must have a
559
559
real-valued floating-point data type determined by Type Promotion Rules.
560
560
561
561
Limitations
0 commit comments