How to convert fprintf from single row to multiple rows?
1 回表示 (過去 30 日間)
古いコメントを表示
Hi! I just started using Matlab a couple of days ago. How can I convert this single row into multiple rows?
0 件のコメント
採用された回答
Star Strider
2022 年 6 月 25 日
There is not enough of the code provided to know what the problem is (and images of code are never appropriate, since actual code that can be copied, pasted, and run is always preferable).
That code should be writing the results 1000 times, so whatever is causing it not to do so is likely ‘over the horizon’ and out of sight here.
5 件のコメント
Star Strider
2022 年 6 月 25 日
As always, my pleasure!
I found it somewhat surprising that the fprintf statement was the problem. I learned something from this.
その他の回答 (1 件)
Adam Danz
2022 年 6 月 25 日
I assume you want to show each numeric value in a new line. To do that, add a new line control character where you want to insert a new line,
fprintf('%11.5f\n%11.5f\n%11.5f\n%11.5f\n%11.5f\n', rand(1,6))
6 件のコメント
参考
カテゴリ
Help Center および File Exchange で Startup and Shutdown についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!