Proper Formatting in the 'fprintf' function
显示 更早的评论
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 个评论
Narges M
2013-7-25
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Characters and Strings 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!