由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Computation版 - 怎么表示小数点后长度为200的小数呀?
相关主题
高精度计算问题菜鸟问题
extended precision question - GSL[转载] matlab的字符串处理功能强吗?
!!! How to adjust precision in CPLEX !!!如何在fortran中用real*16的数据?
Matlab逻辑运算符区别请教一个MATLAB的小数准换问题
c++为什么比c慢?问一个矩阵乘法数值误差得问题
本科学过C++,现在想brush up 求推荐英文教材 (转载)老是看到GSL,不知道是什么?干什么用的?
一个优化实践问题c++ random number generator
ANSI C下如何转换十进制小数为十六进制小数请教fortran
相关话题的讨论汇总
话题: precision话题: 小数点话题: 小数话题: 后长话题: 度为
进入Computation版参与讨论
1 (共1页)
b*********n
发帖数: 1258
1
怎么表示小数点后长度为200的小数呀?
比如说我要输出355/113
不过我想要小数点后的200位都输出
显然double 和 long double 都不够用
不知道大家有什么好地idea呀?
谢谢
b*****y
发帖数: 163
2
You can try to find package dealing with arbitary
floating point precision (possibly, GNU MP library,
http://www.swox.com/gmp/). Don't know if they provide
arbitary precision printing.
In practice, there is barely any use of higher precision
than IEEE double precision for numerical computing. The
performance loss outweighes the tiny accuracy gain.

【在 b*********n 的大作中提到】
: 怎么表示小数点后长度为200的小数呀?
: 比如说我要输出355/113
: 不过我想要小数点后的200位都输出
: 显然double 和 long double 都不够用
: 不知道大家有什么好地idea呀?
: 谢谢

h***o
发帖数: 539
3
要么自己写一套数据结构和运算符来做这个。
以前还算过PI精确到第100位小数呢

【在 b*****y 的大作中提到】
: You can try to find package dealing with arbitary
: floating point precision (possibly, GNU MP library,
: http://www.swox.com/gmp/). Don't know if they provide
: arbitary precision printing.
: In practice, there is barely any use of higher precision
: than IEEE double precision for numerical computing. The
: performance loss outweighes the tiny accuracy gain.

d******e
发帖数: 2265
4
of coz, you can try some software package.
if you use linux, the developerworks on IBM's site
can show your some hints. read the articles there.

【在 b*********n 的大作中提到】
: 怎么表示小数点后长度为200的小数呀?
: 比如说我要输出355/113
: 不过我想要小数点后的200位都输出
: 显然double 和 long double 都不够用
: 不知道大家有什么好地idea呀?
: 谢谢

b*********n
发帖数: 1258
5
能给一个链接吗?
不好意思没有找到

【在 d******e 的大作中提到】
: of coz, you can try some software package.
: if you use linux, the developerworks on IBM's site
: can show your some hints. read the articles there.

d******e
发帖数: 2265
6
http://www-106.ibm.com/developerworks/linux/library/l-mathlibs/
it provides several solutions and a guide:)
wish the article helps

【在 b*********n 的大作中提到】
: 能给一个链接吗?
: 不好意思没有找到

1 (共1页)
进入Computation版参与讨论
相关主题
请教fortranc++为什么比c慢?
请问C里面有没有现成的matrix computation as matlab本科学过C++,现在想brush up 求推荐英文教材 (转载)
问一个小问题一个优化实践问题
Free Fortran compiler for Linux (转载)ANSI C下如何转换十进制小数为十六进制小数
高精度计算问题菜鸟问题
extended precision question - GSL[转载] matlab的字符串处理功能强吗?
!!! How to adjust precision in CPLEX !!!如何在fortran中用real*16的数据?
Matlab逻辑运算符区别请教一个MATLAB的小数准换问题
相关话题的讨论汇总
话题: precision话题: 小数点话题: 小数话题: 后长话题: 度为