How can I know if MATLAB is using 64 bit double precision?

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

Réponses (3)

Alberto
Alberto le 10 Avr 2014
Modifié(e) : Alberto le 10 Avr 2014
If you want all numeric results appear in 64 bits, you have to use:
float('double')
float('long')

1 commentaire

John D'Errico
John D'Errico le 11 Avr 2014
Modifié(e) : John D'Errico le 11 Avr 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.

Connectez-vous pour commenter.

Jan
Jan le 10 Avr 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 commentaires

MATLAB's double use a 64 bit representation, which leads to 53 bits of precision, with the rest being used for signs and scaling.
So there is no link between digits and bits? And if I understood correctly, as long as my initial conditions are doubles then matlab will use double precision for everything else?
Thanks a lot for the help
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.

Connectez-vous pour commenter.

Alberto
Alberto le 10 Avr 2014
Actually, I don't know if that changes how the computations are made, or how the results are shown.

1 commentaire

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.

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by