mindspore.ops.tan
- mindspore.ops.tan(x)[源代码]
计算输入元素的正切值。
\[out_i = tan(x_i)\]- 参数:
x (Tensor) - Tan的输入,任意维度的Tensor。
- 返回:
Tensor,数据类型和shape与 x 相同。
- 异常:
TypeError - x 不是Tensor。
- 支持平台:
Ascend
CPU
GPU
样例:
>>> x = Tensor(np.array([-1.0, 0.0, 1.0]), mindspore.float32) >>> output = ops.tan(x) >>> print(output) [-1.5574081 0. 1.5574081]