Matlab approximation of 0 for small numbers

12 views (last 30 days)
Hi,
I'm attempting to check for error convergence, but I'm entering an infinite loop, and I believe the culprit is Matlab approximating a small number as 0. These numbers are used in the calculation of my error,
xx = 1 - ((ff*ddff)/(2*dff*dff))
bb = ((ff*ddff)/(2*dff*dff)) % for display and debugging purposes only
But for some early iterations I get stuck in an infite loop and the outputs are
xx =
1
bb =
-1.2633e-08
This in turn affects the error calculation (decreasing the tolerance of my error fixes the situation but this is not desireable). Clearly the theoretical answer of xx is not exactly 1 (as the output format suggests, shouldn't it display 1.000?). Would matlab be approximating bb = 0 in this case? Any way to change the approximation tolerance? Any help is appreciated.
Mark

Accepted Answer

Mark
Mark on 10 Jan 2014
I had read data in as %f32 instead of %f64 thus not recognizing that small of a number
  2 Comments
Marc
Marc on 10 Jan 2014
How is that an "accepted" answer? You did not ask us how to read in data.
Mark
Mark on 15 Jan 2014
I asked why matlab was approximating numbers as zero when it should have been keeping its finite value. The format of the data was important because when calculations gave such small enough answers it would register as 0. I know how to read in data, my question was how matlab handles it. See floating point double vs. floating point single.

Sign in to comment.

More Answers (1)

Sean de Wolski
Sean de Wolski on 27 Nov 2013
while abs(bb)<10^-7
etc.
end
?
  2 Comments
Mark
Mark on 27 Nov 2013
the xx value is used in a different calculation where small changes in xx would have a larger change in the resulting calculation. It is the difference between these 2 iterations/calculations that I'm trying to get to converge (i.e. <1e-6)
Sean de Wolski
Sean de Wolski on 27 Nov 2013
Then include that expression inside of the abs()

Sign in to comment.

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!