how to get real quotient in division process?
Afficher commentaires plus anciens
i want to divide 230 by 255 and want to get the answer in decimal or real number. when i write 230/255 it gives me rounded answer but i need its actual answer in real number form.
Réponses (1)
Mischa Kim
le 25 Mai 2014
Modifié(e) : Mischa Kim
le 25 Mai 2014
Saima, not quite sure what you mean, but if you need more significant digits for your answers enter
format long
in the command window, or use
vpa(233/255) % typically used for symbolic calculations
3 commentaires
saima zia
le 25 Mai 2014
saima zia
le 25 Mai 2014
Mischa Kim
le 25 Mai 2014
Use something like
num = 233/255;
vpa(num, 3)
fprintf('%6.3f\n', num)
Note that vpa is typically used for symbolic calculations.
Catégories
En savoir plus sur Assumptions dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!