atan_cn.rst 790 字节
Newer Older
H
Hao Wang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
.. _cn_api_fluid_layers_atan:

atan
-------------------------------

.. py:function:: paddle.fluid.layers.atan(x, name=None)

arctanh激活函数。

.. math::
    out = tanh^{-1}(x)

参数:
X
xiaoting 已提交
14 15
    - **x(Variable)** - atan的输入Tensor,数据类型为 float32 或 float64
    - **name** (str|None) – 具体用法请参见 :ref:`cn_api_guide_Name` ,一般无需设置,默认值为None。
H
Hao Wang 已提交
16

X
xiaoting 已提交
17 18 19
返回:  `atan` 的输出Tensor,数据类型与 `x` 相同。

返回类型: Variable
H
Hao Wang 已提交
20 21 22 23 24 25

**代码示例**:

.. code-block:: python

        import paddle.fluid as fluid
X
xiaoting 已提交
26 27
        data = fluid.layers.data(name="input", shape=[4])
        # if data is [-0.8183,  0.4912, -0.6444,  0.0371]
H
Hao Wang 已提交
28
        result = fluid.layers.atan(data)
X
xiaoting 已提交
29
        # result is [-0.6858,  0.4566, -0.5724,  0.0371]
H
Hao Wang 已提交
30 31 32 33 34