The most close approximation to zero
16 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Eirini Gk
am 7 Apr. 2016
Kommentiert: Titus Edelhofer
am 8 Apr. 2016
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 Kommentare
Titus Edelhofer
am 8 Apr. 2016
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
Akzeptierte Antwort
Titus Edelhofer
am 7 Apr. 2016
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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Quadratic Programming and Cone Programming finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!