How can I display a number with only two digits after the decimal point in MATLAB?
739 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mardhika Jenned
el 3 de Mzo. de 2011
Comentada: Walter Roberson
el 16 de Sept. de 2021
I would like to display a number with only two digits after the decimal point in MATLAB.
2 comentarios
Jan
el 3 de Mzo. de 2011
What is the relation to the tag "digital signal processing"? Can you explain any details concerning the question, please?
Respuesta aceptada
Más respuestas (4)
masoud sistaninejad
el 30 de Dic. de 2020
format shortg
y = 3.3333333333333333333333333333333333333
y_out = round(y,2)
0 comentarios
Walter Roberson
el 31 de Dic. de 2020
For the specific case of 2 decimal places (does not work for any other number)
format bank
10/3
4 comentarios
Walter Roberson
el 16 de Sept. de 2021
x = 10/3;
sprintf('%05.2f', x)
compose("%05.2f", x)
num2str(x, '%05.2f')
Ver también
Categorías
Más información sobre Startup and Shutdown en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!