How many exact decimals can offer Matlab?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi, everybody. I would like to know how many exact decimals can offer Matlab. I did a program to calculate Viete sums and run it and I can see only 4 exact decimals in the answers. Thats all matlab can offer or there is a setting where I can change precision? Thank you, Daniela
0 commentaires
Réponse acceptée
the cyclist
le 2 Avr 2012
If you type
>> format long
you will see about 15 digits of precision. By default, MATLAB does numerical calculations on double-precision floating point numbers, but uses the "short" display format. You can read a bit more with
>> doc format
There is a lot more that can be said, but maybe that's enough for you to know to start?
0 commentaires
Plus de réponses (1)
Jonathan Sullivan
le 2 Avr 2012
Change the display format.
Try:
format long
X % Your variable
0 commentaires
Voir également
Catégories
En savoir plus sur Dates and Time dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!