[section:rounding Rounding Truncation and Integer Conversion] [section:round Rounding Functions] ``#include `` template T round(const T& v); template T round(const T& v, const Policy&); template int iround(const T& v); template int iround(const T& v, const Policy&); template long lround(const T& v); template long lround(const T& v, const Policy&); template long long llround(const T& v); template long long llround(const T& v, const Policy&); These functions return the closest integer to the argument /v/. Halfway cases are rounded away from zero, regardless of the current rounding direction. If the argument /v/ is either non-finite or else outside the range of the result type, then returns the result of __rounding_error: by default this throws an instance of `boost::math::rounding_error`. [endsect] [section:trunc Truncation Functions] ``#include `` template T trunc(const T& v); template T trunc(const T& v, const Policy&); template int itrunc(const T& v); template int itrunc(const T& v, const Policy&); template long ltrunc(const T& v); template long ltrunc(const T& v, const Policy&); template long long lltrunc(const T& v); template long long lltrunc(const T& v, const Policy&); The trunc functions round their argument to the integer value, nearest to but no larger in magnitude than the argument. For example `itrunc(3.7)` would return `3` and `ltrunc(-4.6)` would return `-4`. If the argument /v/ is either non-finite or else outside the range of the result type, then returns the result of __rounding_error: by default this throws an instance of `boost::math::rounding_error`. [endsect] [section:modf Integer and Fractional Part Splitting (modf)] ``#include `` template T modf(const T& v, T* ipart); template T modf(const T& v, T* ipart, const Policy&); template T modf(const T& v, int* ipart); template T modf(const T& v, int* ipart, const Policy&); template T modf(const T& v, long* ipart); template T modf(const T& v, long* ipart, const Policy&); template T modf(const T& v, long long* ipart); template T modf(const T& v, long long* ipart, const Policy&); The `modf` functions store the integer part of /v/ in `*ipart` and return the fractional part of /v/. The sign of the integer and fractional parts are the same as the sign of /v/. If the argument /v/ is either non-finite or else outside the range of the result type, then returns the result of __rounding_error: by default this throws an instance of `boost::math::rounding_error`. [endsect] [endsect] [/section:rounding Rounding Truncation and Integer Conversion] [/ Copyright 2006 John Maddock and Paul A. Bristow. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt). ]