Math中ulp的用法?
对于Math中ulp的用法介绍,不知道怎么的看也看不动,还请高手帮我解释一下!多谢!比如为什么
class testMath
{
public static void main(String[] args)
{
double ch4 = Math.ulp(-1.56);
System.out.println(ch4);
}
}
答案为什么会是2.220446049250313E-16呢?
----------------解决方案--------------------------------------------------------
怎么没有哪位高手帮我一下呀?
----------------解决方案--------------------------------------------------------
ulp表示现有数值最后一位代表的最小数值单位;
小于ulp的数值将无法累加到现有数值(哪怕是累加一百万遍);
请运行修改程序:
public class testMath
{
public static void main(String[] args)
{
double f=-1.56;
double ch4 = Math.ulp(f);
for(int i=0;i<1000000;i++){
f+=ch4;
}
System.out.println(f);
}
}
[ 本帖最后由 liusure2001 于 2009-12-25 20:26 编辑 ]
----------------解决方案--------------------------------------------------------