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

36 visualizaciones (últimos 30 días)
Patricia
Patricia el 10 de Abr. de 2014
Comentada: Walter Roberson el 11 de Abr. de 2014
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

Respuestas (3)

Alberto
Alberto el 10 de Abr. de 2014
Editada: Alberto el 10 de Abr. de 2014
If you want all numeric results appear in 64 bits, you have to use:
float('double')
float('long')
  1 comentario
John D'Errico
John D'Errico el 11 de Abr. de 2014
Editada: John D'Errico el 11 de Abr. de 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.

Iniciar sesión para comentar.


Jan
Jan el 10 de Abr. de 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 comentarios
Patricia
Patricia el 11 de Abr. de 2014
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
Walter Roberson
Walter Roberson el 11 de Abr. de 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.

Iniciar sesión para comentar.


Alberto
Alberto el 10 de Abr. de 2014
Actually, I don't know if that changes how the computations are made, or how the results are shown.
  1 comentario
Walter Roberson
Walter Roberson el 11 de Abr. de 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.

Iniciar sesión para comentar.

Categorías

Más información sobre Numbers and Precision en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by