gpt4 book ai didi

c++ - long double sqrt() 的精度

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:20:57 26 4
gpt4 key购买 nike

我注意到 sqrt() 的 long double 版本的准确性存在问题。以下代码演示了该问题。

#include <iostream>
#include <cmath>
#include <cfloat>

int main(int argc, char ** argv)
{
int count=0;
long double s=sqrt(3L);
std::cout.precision(21);
std::cout << "s=" << s << ", s^2=" << s*s << std::endl;
while( s*s<3L+LDBL_EPSILON ) {
s+=LDBL_EPSILON;
std::cout << s << ' ' << s*s << std::endl;
++count;
}
std::cout << "sqrt(3L) is approximately " << count << " multiples of LDBL_EPSILON away from the correct value." << std::endl;
return 0;
}

编译运行

>g++ -o sqrt sqrt.cpp && ./sqrt

给予

s=1.73205080756887719318, s^2=2.9999999999999996524
1.73205080756887719329 2.99999999999999965284
1.73205080756887719339 2.99999999999999965306
... (922 lines omitted)
1.73205080756887729347 2.99999999999999999978
1.73205080756887729357 3.00000000000000000022
sqrt(3L) is approximately 926 multiples of LDBL_EPSILON away from the correct value.

sqrt() 的常规 double 版本给出了最接近真实值的 double。

我使用的g++版本是

>g++ -v
Using built-in specs.
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 4.4.5-8' --with-bugurl=file:///usr/share/doc/gcc-4.4/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.4 --enable-shared --enable-multiarch --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.4 --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc --with-arch-32=i586 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.4.5 (Debian 4.4.5-8)

这是一个已知错误吗?我应该在某处报告吗?

最佳答案

这里有两个问题:首先,3L隐式提升为 double不是 long double所以即使您将返回值分配给 long double它仍在使用 sqrt 的低精度版本.你需要 static_cast 3 至 long double作为论据。其次,只有 double sqrt 的版本被导入全局命名空间,因为 C 不支持函数重载,你必须使用 std::sqrt相反。

因此:

long double s=std::sqrt(static_cast<long double>(3));

关于c++ - long double sqrt() 的精度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4818573/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com