R 在 uniroot 和处理浮点方面是否存在已知问题?
>str(uniroot(function(x) x*(x^2-1) + .5, lower = -2, upper = 2,
+ tol = 0.0001))
List of 4
$ root : num -1.19
$ f.root : num -2.55e-07
$ iter : int 7
$ estim.prec: num 5e-05
> -1.19 * ( 1.19 ^ 2 - 1 ) + 0.5
[1] 0.004841
显然 的值f.root
不等于手动计算的函数值。