print decimal and whole numbers as they are with right justification

6 vues (au cours des 30 derniers jours)
deb.P
deb.P le 29 Nov 2017
Commenté : Stephen23 le 29 Nov 2017
i want to print this vector a = [0.2569; 1.7856; 16.2451; 485.5412; 0.21; 50] as follows: a =
0.2569
1.7856
16.2451
485.5412
0.21
50
i want to print them with right justification irrespective of placement of decimal point.

Réponses (1)

Stephen23
Stephen23 le 29 Nov 2017
>> fprintf('%10g\n',a)
0.2569
1.7856
16.2451
485.541
0.21
50
  2 commentaires
deb.P
deb.P le 29 Nov 2017
thank you
Stephen23
Stephen23 le 29 Nov 2017
@deb.P: I hope that it helps. Remember to accept the answer that help resolve your question. Accepting answers is the easiest way to show your thanks to the volunteers who helped you.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by