fix doc math

This commit is contained in:
emmmmtang 2022-12-23 15:35:33 +08:00
parent d6b0d4e36a
commit f3ab78e66b
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ mindspore.ops.ldexp
.. py:function:: mindspore.ops.ldexp(x, other)
将输入乘以 2** `other`
将输入乘以 :math:`2^{other}`
.. math::
out_{i} = x_{i} * ( 2_{i} ^{other} )

View File

@ -2729,7 +2729,7 @@ def trunc(input):
def ldexp(x, other):
"""
Multiplies input by 2** `other` .
Multiplies input by :math:`2^{other}` .
.. math::