1.. Copyright (c) 2016, Johan Mabille, Sylvain Corlay and Wolf Vollprecht
2
3   Distributed under the terms of the BSD 3-Clause License.
4
5   The full license is in the file LICENSE, distributed with this software.
6
7Trigonometric functions
8=======================
9
10**xtensor** provides the following trigonometric functions for xexpressions and scalars:
11
12Defined in ``xtensor/xmath.hpp``
13
14.. _sin-function-reference:
15.. doxygenfunction:: sin(E&&)
16   :project: xtensor
17
18.. _cos-function-reference:
19.. doxygenfunction:: cos(E&&)
20   :project: xtensor
21
22.. _tan-function-reference:
23.. doxygenfunction:: tan(E&&)
24   :project: xtensor
25
26.. _asin-function-reference:
27.. doxygenfunction:: asin(E&&)
28   :project: xtensor
29
30.. _acos-function-reference:
31.. doxygenfunction:: acos(E&&)
32   :project: xtensor
33
34.. _atan-function-reference:
35.. doxygenfunction:: atan(E&&)
36   :project: xtensor
37
38.. _atan2-func-ref:
39.. doxygenfunction:: atan2(E1&&, E2&&)
40   :project: xtensor
41
42