设计
规格
API
API映射
迁移指南
FAQ
RELEASE NOTES
返回每个元素的正切值。
Tensor,和当前输入的shape一样。
TypeError - 当前输入不是Tensor。
Ascend GPU CPU
Ascend
GPU
CPU
样例:
>>> from mindspore import Tensor >>> a = Tensor([-1.0, 0.0, 1.0]).astype("float32") >>> output = a.tan() >>> print(output) [-1.5574081 0. 1.5574081]