How can I display a number with only two digits after the decimal point in MATLAB?
Mostra commenti meno recenti
I would like to display a number with only two digits after the decimal point in MATLAB.
2 Commenti
Jan
il 3 Mar 2011
What is the relation to the tag "digital signal processing"? Can you explain any details concerning the question, please?
Mardhika Jenned
il 3 Mar 2011
Risposta accettata
Più risposte (4)
masoud sistaninejad
il 30 Dic 2020
4 voti
format shortg
y = 3.3333333333333333333333333333333333333
y_out = round(y,2)
Mardhika Jenned
il 3 Mar 2011
0 voti
For the specific case of 2 decimal places (does not work for any other number)
format bank
10/3
4 Commenti
Omar Lakkis
il 15 Set 2021
Thanks. I'm teaching a financial computing course and was looking for banker's output :-)
Walter Roberson
il 15 Set 2021
Be careful about rounding vs truncation. I do not know what is standard for banking purposes.
Megha
il 16 Set 2021
in the same scenario, could you please tell how to obtain 03.33??
x = 10/3;
sprintf('%05.2f', x)
compose("%05.2f", x)
num2str(x, '%05.2f')
Categorie
Scopri di più su Logical in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!