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.

Respuestas (1)

Mischa Kim
Mischa Kim el 25 de Mayo de 2014
Editada: Mischa Kim el 25 de Mayo de 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 comentarios

saima zia
saima zia el 25 de Mayo de 2014
thanks a lot Mischa. now plz also tell how to round it to 3 places after decimal point?
saima zia
saima zia el 25 de Mayo de 2014
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.

Iniciar sesión para comentar.

Preguntada:

el 25 de Mayo de 2014

Editada:

el 25 de Mayo de 2014

Community Treasure Hunt

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

Start Hunting!

Translated by