mindspore.numpy.deg2rad

mindspore.numpy.deg2rad(x, dtype=None)[源代码]

将角度从角度制转换为弧度制。

参数:
  • x (Tensor) - 角度,单位为度。

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

返回:

Tesnor,弧度制下的对应角度。 如果 x 是Tensor标量,则结果也是Tensor标量。

异常:
  • TypeError - 如果 x 不是Tensor。

支持平台:

Ascend GPU CPU

样例:

>>> import mindspore.numpy as np
>>> x = np.asarray([1, 2, 3, -4, -5])
>>> output = np.deg2rad(x)
>>> print(output)
[ 0.01745329  0.03490658  0.05235988 -0.06981317 -0.08726647]