how to get real quotient in division process?

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.

Answers (1)

Mischa Kim
Mischa Kim on 25 May 2014
Edited: Mischa Kim on 25 May 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 Comments

thanks a lot Mischa. now plz also tell how to round it to 3 places after decimal point?
it worked but the answer is sym type, thats y i can't apply any operation to the answer.
Use something like
num = 233/255;
vpa(num, 3)
fprintf('%6.3f\n', num)
Note that vpa is typically used for symbolic calculations.

Sign in to comment.

Asked:

on 25 May 2014

Edited:

on 25 May 2014

Community Treasure Hunt

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

Start Hunting!