Fprintf values in an ordered manner
3 ビュー (過去 30 日間)
古いコメントを表示
Fuwad Abdul Muyeed
2021 年 4 月 8 日
コメント済み: Fuwad Abdul Muyeed
2021 年 4 月 9 日
Hi. I have two arrays with different values. x=[0.1,5,10] and y=[400,500,600]. When I print out the values with the following command,
fprintf(' %g %10f\n',[x(:),y(:)].')
I get
0.1 400
5 500
10 600
But I want in an ordered manner such that the right column is indented in one straight vertical column.
0.1 400
5 500
10 600
Could anyone kindly please help me achieve this?
0 件のコメント
採用された回答
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Introduction to Installation and Licensing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!