mindspore.Tensor.tan

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

逐元素计算 self 的正切值。

\[out_i = \tan(input_i)\]
返回:

Tensor,shape与 self 相同。当 self 数据类型为bool、int8、uint8、int16、int32、int64时,返回值数据类型为float32。否则,返回值数据类型与 self 数据类型相同。

异常:
  • TypeError - self 不是Tensor。

支持平台:

Ascend GPU CPU

样例:

>>> import mindspore
>>> import numpy as np
>>> from mindspore import Tensor
>>> input = Tensor(np.array([-1.0, 0.0, 1.0]), mindspore.float32)
>>> output = input.tan()
>>> print(output)
[-1.5574077 0. 1.5574077]