print decimal and whole numbers as they are with right justification
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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.
0 commentaires
Réponses (1)
Stephen23
le 29 Nov 2017
>> fprintf('%10g\n',a)
0.2569
1.7856
16.2451
485.541
0.21
50
2 commentaires
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.
Voir également
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!