mindspore.numpy.true_divide
- mindspore.numpy.true_divide(x1, x2, dtype=None)[源代码]
返回输入的真除法,逐元素计算。
该函数与Python默认的“向下取整除”不同,它返回真除法的结果。
说明
不支持NumPy参数 out 、 where 、 casting 、 order 、 subok 、 signature 、 extobj 。
- 参数:
x1 (Tensor) - 被除数。
x2 (Tensor) - 除数。
dtype (mindspore.dtype, 可选) - 默认值:
None
。覆盖输出Tensor的dtype。
- 返回:
Tensor或标量,如果 x1 和 x2 都是标量,则返回标量。
- 支持平台:
Ascend
GPU
CPU
样例:
>>> import mindspore.numpy as np >>> x1 = np.full((3, 2), [1, 2]) >>> x2 = np.full((3, 2), [3, 4]) >>> output = np.true_divide(x1, x2) >>> print(output) [[0.33333334 0.5 ] [0.33333334 0.5 ] [0.33333334 0.5 ]]