How can I know if MATLAB is using 64 bit double precision?
27 views (last 30 days)
Show older comments
Hi, I'm doing a numerical integration to propagate the trajectories of the bodies in our solar system. I am not a computer science person so I am not even sure that my question makes any sense. I need to make sure that MATLAB is using 64 bit double precision. I read somewhere that matlab always uses 64 bits but when I type "digits" into the command window, I get 32. Also the value of eps is 1e-16. As far as I understood, for 32 bits, the unit roundoff or machine precision is 1e-7. So I guess my question is what is the difference between the information given by number of bits and the machin precision?
If anyone can help me out with this I would be most grateful :-)
Thanks
0 Comments
Answers (3)
Alberto
on 10 Apr 2014
Edited: Alberto
on 10 Apr 2014
If you want all numeric results appear in 64 bits, you have to use:
float('double')
float('long')
1 Comment
John D'Errico
on 11 Apr 2014
Edited: John D'Errico
on 11 Apr 2014
This would have nothing to do with the computations. In fact, the commands you have advised for use will generate an error in MATLAB.
Finally, I would point out that MATLAB knows nothing at all about a long data type.
Jan
on 10 Apr 2014
Matlab's double 's have a precision of 64 bits. The 32 bit floating point type is single. digits is related to the different topic of symbolic maths. This means the number of digits, not bits.
For numerical integrations you can rely on the fact, that Matlab uses double precision if the initial values have this type also.
3 Comments
Walter Roberson
on 11 Apr 2014
There are multiple possible relationships between digits and bits. For the one that MATLAB uses for double precision numbers, please have a look at IEEE 754 Floating Point standards.
If N bits are stored for the mantissa in floating point schemes that use "hidden bit", then the number of digits is between floor(log10(2^(N+1))) and ceil() of the same expression.
Alberto
on 10 Apr 2014
Actually, I don't know if that changes how the computations are made, or how the results are shown.
1 Comment
Walter Roberson
on 11 Apr 2014
float('double') would request to convert the string ['d' 'o' 'u' 'b' 'l' 'e'] to single precision floating point and output the result. It would not change anything.
There are some feature() commands that might have effect.
See Also
Categories
Find more on Arithmetic Operations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!