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
7
8Power functions
9===============
10
11**xtensor** provides the following power functions for xexpressions and scalars:
12
13Defined in ``xtensor/xmath.hpp``
14
15.. _pow-function-reference:
16.. doxygenfunction:: pow(E1&&, E2&&)
17   :project: xtensor
18
19.. doxygenfunction:: pow(E&&)
20   :project: xtensor
21
22.. doxygenfunction:: square(E1&&)
23   :project: xtensor
24
25.. doxygenfunction:: cube(E1&&)
26   :project: xtensor
27
28.. _sqrt-function-reference:
29.. doxygenfunction:: sqrt(E&&)
30   :project: xtensor
31
32.. _cbrt-function-reference:
33.. doxygenfunction:: cbrt(E&&)
34   :project: xtensor
35
36.. _hypot-func-ref:
37.. doxygenfunction:: hypot(E1&&, E2&&)
38   :project: xtensor
39
40