The most close approximation to zero
18 次查看(过去 30 天)
显示 更早的评论
Hello, I want to ask you about the number of smaller approximation close to zero that matlab can understands. I mean I have a function and I wrote that If abs(....)<1e-15 (I want it =0 but because of small errors it has to be very very close to zero.) .. end
but when the number is close to this and has to read the loop it doesnt, so the function goes wrong. And also there many errors. Do you know if I can have a number closer to zero? (I wrote e-15 because I know that matlab gives till 15 digits after '.' when you have format long)
4 个评论
Titus Edelhofer
2016-4-8
Hi,
let me think: you say that for x0=0 the function newtonsmethod2 gives as result x1=3e-9, although x0=0 is the "better" (or exact? solution). In this case your newtonsmethod2 should see that x0=0 is in fact optimal and the error is to be searched there. Alternatives are you have a second order root, or the tolerances inside your newtonsmethod2 are not handled correctly or ...
Titus
采纳的回答
Titus Edelhofer
2016-4-7
Hi,
there are some aspects to this question. The smallest number you can represent is much smaller:
realmin
ans =
2.2251e-308
But this is not what you are looking for. The accuracy is more what you are looking for:
eps
ans =
2.2204e-16
But keep in mind that the tolerance usually should be a relative tolerance, not an absolute one (difference of 10 degrees on earth makes much more of a difference than 10 degrees on the surface of the sun). So I would suggest to use something like
xExact = 42.0;
xIteration = 41.9;
while abs(xExact-xIteration) < 100*eps(xExact)
This way you have a relative error test. Note, the 100 is arbitrary and depends heavily on what you are really doing.
Titus
3 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Quadratic Programming and Cone Programming 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!