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
7Nearest integer floating point operations
8=========================================
9
10**xtensor** provides the following rounding operations for xexpressions:
11
12Defined in ``xtensor/xmath.hpp``
13
14.. _ceil-function-reference:
15.. doxygenfunction:: ceil(E&&)
16   :project: xtensor
17
18.. _floor-func-ref:
19.. doxygenfunction:: floor(E&&)
20   :project: xtensor
21
22.. _trunc-func-ref:
23.. doxygenfunction:: trunc(E&&)
24   :project: xtensor
25
26.. _round-func-ref:
27.. doxygenfunction:: round(E&&)
28   :project: xtensor
29
30.. _nearbyint-func-ref:
31.. doxygenfunction:: nearbyint(E&&)
32   :project: xtensor
33
34.. _rint-function-reference:
35.. doxygenfunction:: rint(E&&)
36   :project: xtensor
37
38