Merge pull request !35105 from ling/code_docs_sr
This commit is contained in:
i-robot 2022-05-30 01:43:18 +00:00 committed by Gitee
commit d41b1ab22d
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
3 changed files with 38 additions and 0 deletions

View File

@ -30,6 +30,14 @@ mindspore.Tensor
Tensor。
.. py:method:: tan()
返回每个元素的正切值。
**返回:**
Tensor。
.. py:method:: all(axis=(), keep_dims=False)
检查在指定轴上所有元素是否均为True。

View File

@ -0,0 +1,8 @@
mindspore.ops.Tan
===================
.. py:class:: mindspore.ops.Tan
计算输入元素的正切值。
更多参考详见 :func:`mindspore.ops.tan`

View File

@ -0,0 +1,22 @@
mindspore.ops.tan
===================
.. py:function:: mindspore.ops.tan(x)
计算输入元素的正切值。
.. math::
out_i = tan(x_i)
**参数:**
- **x** (Tensor) - Tan的输入任意维度的Tensor其数据类型为float16或float32。
**返回:**
Tensor数据类型和shape与 `x` 相同。
**异常:**
- **TypeError** - `x` 的数据类型既不是float16也不是float32。
- **TypeError** - `x` 不是Tensor。