Proper Formatting in the 'fprintf' function
Afficher commentaires plus anciens
I'm attempting to align certain text in a text file that I'm writing with matlab. Right now part of my code looks like this:
'%6.4f\tTwFAM1Sh(2) - Mode 1, coefficient of x^2 term\r\n' ...
'%6.4f\tTwFAM1Sh(3) - , coefficient of x^3 term\r\n' ... ''%6.4f\tTwFAM1Sh(4) - , coefficient of x^4 term\r\n' ...
'%6.4f\tTwFAM1Sh(5) - , coefficient of x^5 term\r\n' ...
and it prints this:
1.4401 TwFAM1Sh(2) - Mode 1, coefficient of x^2 term
-0.4228 TwFAM1Sh(3) - , coefficient of x^3 term
-0.0239 TwFAM1Sh(4) - , coefficient of x^4 term
0.0027 TwFAM1Sh(5) - , coefficient of x^5 term
but what I need it to do is this:
0.8164 TwFAM1Sh(2) - Mode 1, coefficient of x^2 term
0.3370 TwFAM1Sh(3) - , coefficient of x^3 term
-0.3668 TwFAM1Sh(4) - , coefficient of x^4 term
0.4695 TwFAM1Sh(5) - , coefficient of x^5 term
...The second part prints the numbers aligned from the last integer rather than aligning the first integer. Any guesses??
1 commentaire
Narges M
le 25 Juil 2013
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Characters and Strings dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!