mindspore.numpy.divide

mindspore.numpy.divide(x1, x2, dtype=None)[源代码]

返回输入的真除法,逐元素计算。

该函数与Python默认的“向下取整除”不同,它返回真除法的结果。

说明

不支持numpy参数 outwherecastingordersuboksignatureextobj

参数:
  • x1 (Tensor) - 被除数。

  • x2 (Tensor) - 除数。

  • dtype (mindspore.dtype, 可选) - 默认值: None。 覆盖输出Tensor的dtype。

返回:

Tensor或Tensor,如果 x1x2 都是Tensor,返回Tensor。

支持平台:

Ascend GPU CPU

样例:

>>> import mindspore.numpy as np
>>> x1 = np.full((3, 2), [1, 2])
>>> x2 = np.full((3, 2), [3, 4])
>>> output = np.divide(x1, x2)
>>> print(output)
[[0.33333334 0.5       ]
[0.33333334 0.5       ]
[0.33333334 0.5       ]]