Borrar filtros
Borrar filtros

Truncating a number without rounding

101 visualizaciones (últimos 30 días)
wesso Dadoyan
wesso Dadoyan el 18 de Ag. de 2015
Comentada: Walter Roberson el 18 de Ag. de 2015
Is it possible to truncate a number in matlab without rounding it to the first decimal point? for example, 5.17 I want it to be 5.1 and not 5.2 Thanks

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 18 de Ag. de 2015
fix(a*10)/10
  1 comentario
Walter Roberson
Walter Roberson el 18 de Ag. de 2015
For negative values you need to figure out whether you want -5.17 to go to -5.1 or to -5.2 . If you want the truncation to be "at most" the original value, then you would use floor(a*10)/10 . If you want the truncation to be "closer to 0" then you would use fix() like Azzi shows.

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by