mindspore.Tensor.sqrt

查看源文件
mindspore.Tensor.sqrt()

逐元素计算 self 的平方根。

说明

self 的值中存在一些负数,则负数对应位置上的返回结果为NaN。

\[out_{i} = \sqrt{self_{i}}\]
返回:

Tensor,shape和数据类型与输入 self 相同。

支持平台:

Ascend GPU CPU

样例:

>>> import mindspore
>>> import numpy as np
>>> from mindspore import Tensor
>>> x = Tensor(np.array([1.0, 4.0, 9.0]), mindspore.float32)
>>> output = Tensor.sqrt(x)  # x.sqrt()
>>> print(output)
[1. 2. 3.]