Proper Formatting in the 'fprintf' function
Show older comments
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 Comment
Narges M
on 25 Jul 2013
Accepted Answer
More Answers (0)
Categories
Find more on Characters and Strings in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!