Borrar filtros
Borrar filtros

suppose i have number a=5.70787644444 how do i consider just first 2 decimal places in that . that is a=5.70. is it possible?

1 visualización (últimos 30 días)
please reply as soon as possible.

Respuesta aceptada

Star Strider
Star Strider el 7 de Feb. de 2015
One solution:
a = 5.70787644444;
roundn = @(x,n) fix(x.*10.^n)./10.^n; % Round ‘x’ To ‘n’ Digits To The Right Of The Decimal
ar = roundn(a,2)
produces:
ar =
5.70
  4 comentarios

Iniciar sesión para comentar.

Más respuestas (1)

Guillaume
Guillaume el 7 de Feb. de 2015
Since 2014b, round takes the number of decimals to round to, so it's just:
a = 5.70787644444;
arounded = round(a, 2)
  1 comentario
Image Analyst
Image Analyst el 7 de Feb. de 2015
Yes, but he didn't ask for the rounded value. You probably just thought that since that's the name Star chose - not a good descriptive name in my opinion since it uses fix() instead of round() and fix() does not round in the sense that most people think of rounding.

Iniciar sesión para comentar.

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by