How can I display a number with only two digits after the decimal point in MATLAB?

730 visualizaciones (últimos 30 días)
I would like to display a number with only two digits after the decimal point in MATLAB.
  2 comentarios
Jan
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?
Mardhika Jenned
Mardhika Jenned el 3 de Mzo. de 2011
i'm sorry, i don't understand about tags, so i pick a random,
about the question,
i mean this
10/3 = 3.3333333333333333333333333333333333333
i just want matlab show 3.333
sorry my english is bad,
thx

Iniciar sesión para comentar.

Respuesta aceptada

Jan
Jan el 3 de Mzo. de 2011
Display a number with two digits behind the dot:
fprintf('%.2f', pi)

Más respuestas (4)

masoud sistaninejad
masoud sistaninejad el 30 de Dic. de 2020
format shortg
y = 3.3333333333333333333333333333333333333
y_out = round(y,2)

Mardhika Jenned
Mardhika Jenned el 3 de Mzo. de 2011
thx

Mardhika Jenned
Mardhika Jenned el 3 de Mzo. de 2011
example
10/3 = 3.3333
but
i want to change 3.3333 to 4.
how the formula. please tell me, thx

Walter Roberson
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
ans =
3.33
  4 comentarios
Megha
Megha el 16 de Sept. de 2021
in the same scenario, could you please tell how to obtain 03.33??
Walter Roberson
Walter Roberson el 16 de Sept. de 2021
x = 10/3;
sprintf('%05.2f', x)
ans = '03.33'
compose("%05.2f", x)
ans = "03.33"
num2str(x, '%05.2f')
ans = '03.33'

Iniciar sesión para comentar.

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Etiquetas

Aún no se han introducido etiquetas.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by