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
7Exponential functions
8=====================
9
10**xtensor** provides the following exponential functions for xexpressions:
11
12Defined in ``xtensor/xmath.hpp``
13
14.. _exp-function-reference:
15.. doxygenfunction:: exp(E&&)
16   :project: xtensor
17
18.. _exp2-function-reference:
19.. doxygenfunction:: exp2(E&&)
20   :project: xtensor
21
22.. _expm1-func-ref:
23.. doxygenfunction:: expm1(E&&)
24   :project: xtensor
25
26.. _log-function-reference:
27.. doxygenfunction:: log(E&&)
28   :project: xtensor
29
30.. _log2-function-reference:
31.. doxygenfunction:: log2(E&&)
32   :project: xtensor
33
34.. _log10-func-ref:
35.. doxygenfunction:: log10(E&&)
36   :project: xtensor
37
38.. _log1p-func-ref:
39.. doxygenfunction:: log1p(E&&)
40   :project: xtensor
41
42