Why there is no truncate function in Matlab?
62 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Vidz
el 24 de Ag. de 2017
Comentada: Vidz
el 30 de Ag. de 2017
Hi,
I need to truncate values in a For loop and round() isn't working. I was just wondering why there is no truncate function yet?
0 comentarios
Respuesta aceptada
Image Analyst
el 24 de Ag. de 2017
Because round sometimes rounds up - away from zero. I think you may want to use fix() instead of round(). It always rounds towards zero, in other words, truncates. See if that works for you and let me know.
2 comentarios
Walter Roberson
el 24 de Ag. de 2017
You should also know about floor(), which rounds towards negative infinity -- the maximum integer less than or equal to the input.
Más respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!