mindspore.numpy.multiply
- mindspore.numpy.multiply(x1, x2, dtype=None)[源代码]
Multiplies arguments element-wise.
说明
Numpy arguments out, where, casting, order, subok, signature, and extobj are not supported.
- 参数
x1 (Tensor) – input tensor to be multiplied.
x2 (Tensor) – input tensor to be multiplied.
dtype (
mindspore.dtype
, optional) – Default:None
. Overrides the dtype of the output Tensor.
- 返回
Tensor or scalar, the product of x1 and x2, element-wise. This is a scalar if both x1 and x2 are scalars.
- Supported Platforms:
Ascend
GPU
CPU
样例
>>> import mindspore.numpy as np >>> x1 = np.full((3, 2), [1, 2]) >>> x2 = np.full((3, 2), [3, 4]) >>> output = np.multiply(x1, x2) >>> print(output) [[3 8] [3 8] [3 8]]