Display result with two decimal places

115 vues (au cours des 30 derniers jours)
Felix Eckle
Felix Eckle le 16 Juil 2021
Commenté : Felix Eckle le 16 Juil 2021
Hello guys,
my question seems stupid but I just can't figure it out. I have three results:
A=1.502357714661695e+04
B=1.096611470555982e+04
C=5.516017989036879e+03
Now I want to display then like:
A=15,023.58
B=10,966,14
C=5,516.02
I tried
format short g
but then the decimals are missing. I tried:
sprintf('%f',A);
but then I can't change the format to show "," and "." and I can't round the result.
Nothing else I tried worked. Any Idea of how to display the numbers correctly?
kind regards

Réponse acceptée

Steven Lord
Steven Lord le 16 Juil 2021
format bank
A=1.502357714661695e+04
A =
15023.58
B=1.096611470555982e+04
B =
10966.11
C=5.516017989036879e+03
C =
5516.02
  1 commentaire
Felix Eckle
Felix Eckle le 16 Juil 2021
Thank you so much!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB dans Help Center et File Exchange

Produits


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by