31

我想将浮点数四舍五入到给定的精度,例如:

0.051 i want to convert it to
0.1

0.049 i want to convert it to
0.0

0.56 i want to convert it to
0.6

0.54 i want to convert it to
0.5

我无法更好地解释它,但这样做的原因是将点位置(如 0.131f、0.432f)转换为网格中瓦片的位置(如 0.1f、0.4f)。

4

11 回答 11

25

只要您的网格是规则的,只需找到从整数到此网格的转换即可。所以假设你的网格是

0.2  0.4  0.6  ...

然后你绕过

float round(float f)
{
    return floor(f * 5 + 0.5) / 5;
    // return std::round(f * 5) / 5; // C++11
}
于 2012-06-26T14:05:13.957 回答
9

标准ceil()floor()函数没有精度,我想可以通过添加你自己的精度来解决这个问题 - 但这可能会引入错误 - 例如

double ceil(double v, int p)
{
  v *= pow(10, p);
  v = ceil(v);
  v /= pow(10, p);
}

我想你可以测试一下这对你是否可靠?

于 2012-06-26T14:03:21.450 回答
6

您可以使用的算法:

  • 获得 10 次幂(有效位数)(=P10)
  • 将你的双值乘以 P10
  • 加:0.5(如果为负,则减 - 见 Ankush Shah 的评论)
  • 将此总和的整数部分除以 (P10) - 答案将是您的四舍五入数
于 2012-06-26T14:08:18.857 回答
6

编辑 1:我在 python 中寻找 numpy 的解决方案,但没有意识到 OP 要求 C++ 哈哈,哦,好吧。

编辑2:大声笑,看起来我什至没有解决你原来的问题。看起来你真的想根据小数四舍五入(操作独立于给定的数字),而不是精度(操作取决于数字),其他人已经解决了这个问题。

我实际上也在四处寻找这个,但找不到任何东西,所以我将一个 numpy 数组的实现放在一起。看起来它实现了 slashmais 所说的逻辑。

def pround(x, precision = 5):
    temp = array(x)
    ignore = (temp == 0.)
    use = logical_not(ignore)
    ex = floor(log10(abs(temp[use]))) - precision + 1
    div = 10**ex
    temp[use] = floor(temp[use] / div + 0.5) * div
    return temp

这也是一个 C++ 标量版本,您可能可以使用 Eigen 执行与上述类似的操作(它们具有逻辑索引):(我也借此机会练习了更多的提升哈哈):

#include <cmath>
#include <iostream>
#include <vector>
#include <boost/foreach.hpp>
#include <boost/function.hpp>
#include <boost/bind.hpp>

using namespace std;

double pround(double x, int precision)
{
    if (x == 0.)
        return x;
    int ex = floor(log10(abs(x))) - precision + 1;
    double div = pow(10, ex);
    return floor(x / div + 0.5) * div;
}

    template<typename T>
vector<T>& operator<<(vector<T> &x, const T &item)
{
    x.push_back(item);
    return x;
}

int main()
{
    vector<double> list;
    list << 0.051 << 0.049 << 0.56 << 0.54;
    // What the OP was wanting
    BOOST_FOREACH(double x, list)
    {
        cout << floor(x * 10 + 0.5) / 10 << "\n";
    }

    cout << "\n";

    BOOST_FOREACH(double x, list)
    {
        cout << pround(x, 0) << "\n";
    }

    cout << "\n";

    boost::function<double(double)> rounder = boost::bind(&pround, _1, 3);
    vector<double> newList;
    newList << 1.2345 << 1034324.23 << 0.0092320985;
    BOOST_FOREACH(double x, newList)
    {
        cout << rounder(x) << "\n";
    }

    return 0;
}

输出:

0.1
0
0.6
0.5

0.1
0
1
1

1.23
1.03e+06
0.00923
于 2012-10-14T15:41:56.893 回答
4

使用floor()ceil()floor将浮点数转换为下一个较小的整数,并ceil转换为下一个更高的整数:

floor( 4.5 ); // returns 4.0
ceil( 4.5 );  // returns 5.0

我认为以下方法会起作用:

float round( float f )
{   
    return floor((f * 10 ) + 0.5) / 10;
}

floor( f + 0.5 )将四舍五入为整数。通过首先乘以 10,然后将结果除以 10,您以 0.1 的增量四舍五入。

于 2012-06-26T14:06:59.680 回答
3

通常您在编译时就知道所需的精度。因此,使用此处提供的模板化 Pow 函数,您可以执行以下操作:

template <int PRECISION>
float roundP(float f)
{
    const int temp = Pow<10,PRECISION>::result;
    return roundf(f*temp)/temp;
}

int main () {
    std::cout << std::setprecision(10);
    std::cout << roundP<0>(M_PI) << std::endl;
    std::cout << roundP<1>(M_PI) << std::endl;
    std::cout << roundP<2>(M_PI) << std::endl;
    std::cout << roundP<3>(M_PI) << std::endl;
    std::cout << roundP<4>(M_PI) << std::endl;
    std::cout << roundP<5>(M_PI) << std::endl;
    std::cout << roundP<6>(M_PI) << std::endl;
    std::cout << roundP<7>(M_PI) << std::endl;
}

在这里测试。

结果还显示了浮点表示有多不精确:)

3

3.099999905

3.140000105

3.14199996

3.141599894

3.141590118

3.141592979

3.141592741

使用 double 可以获得更好的结果:

template <int PRECISION>
double roundP(double f)
{
    const int temp = Pow<10,PRECISION>::result;
    return round(f*temp)/temp;
}

以精度 20 打印:

3

3.1000000000000000888

3.1400000000000001243

3.1419999999999999041

3.1415999999999999481

3.1415899999999998826

3.1415929999999998579

3.1415926999999999047

于 2015-07-15T09:13:08.580 回答
3

我将对最后几个答案进行简要优化,首先将输入数字转换为双精度以防止溢出。一个示例函数(不太漂亮,但工作得很好):

#include <cmath>

// round float to n decimals precision
float round_n (float num, int dec)
{
    double m = (num < 0.0) ? -1.0 : 1.0;   // check if input is negative
    double pwr = pow(10, dec);
    return float(floor((double)num * m * pwr + 0.5) / pwr) * m;
}
于 2017-08-02T19:58:15.327 回答
2

您可以使用以下函数将数字四舍五入到所需的精度

double round(long double number, int precision) {
  int decimals = std::pow(10, precision);
  return (std::round(number * decimals)) / decimals;
}

检查下面的一些例子......

1)

round(5.252, 0)
returns => 5

2)

round(5.252, 1)
returns => 5.3

3)

round(5.252, 2)
returns => 5.25

4)

round(5.252, 3)
returns => 5.252

此功能甚至适用于精度为 9 的数字。

5)

round(5.1234500015, 9)
returns => 5.123450002
于 2018-05-18T04:57:56.783 回答
1

我曾经写过一个小函数,它可以将doubles 向上舍入到一个固定的精度(例如 2 个小数0.01),而无需包含<cmath>

constexpr double simplyRounded( const double value )
{
    return (((((int)(value * 1000.0) % 10) >= 5) + ((int)(value * 100.0))) / 100.0);
}   

...可以调整为您提供小数点后 1 位的精度(例如0.1),取值和返回值float,如下所示:

constexpr float simplyRounded( const float value )
{
    return (((((int)(value * 1000.0f) % 10) >= 5) + ((int)(value * 100.0f))) / 100.0f);
}

于 2019-11-08T06:40:41.943 回答
0

由于 Mooing Duck 编辑了我的问题并删除了问题不应包含答案的代码(可以理解),我将在此处编写解决方案:

float round(float f,float prec)
{
    return (float) (floor(f*(1.0f/prec) + 0.5)/(1.0f/prec));
}
于 2015-03-17T05:25:02.373 回答
0

舍入浮点数的算法:

 double Rounding(double src, int precision) {
         int_64 des;
         double tmp;
         double result;
         tmp = src * pow(10, precision);
         if(tmp < 0) {//negative double
            des = (int_64)(tmp - 0.5);
         }else {
            des = (int_64)(tmp + 0.5);
         }
         result = (double)((double)dst * pow(10, -precision));
         return result;
    }
于 2015-12-09T03:55:21.900 回答