How to convert fprintf from single row to multiple rows?

조회 수: 4 (최근 30일)
Christoppe
Christoppe 2022년 6월 25일
댓글: Star Strider 2022년 6월 25일
Hi! I just started using Matlab a couple of days ago. How can I convert this single row into multiple rows?

채택된 답변

Star Strider
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
Christoppe
Christoppe 2022년 6월 25일
Hi! I appreiciate the information you have shared with me, and I appreciate your prompt reply.
Star Strider
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
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))
0.50328 0.90133 0.47589 0.81838 0.27507 0.93488
  댓글 수: 6
Christoppe
Christoppe 2022년 6월 25일
Enter function:
x^3 - 4*x^2 + x - 10
Enter the first initial guess:
3
Enter the second initial guess:
4
Enter absolute error:
0.0001
Christoppe
Christoppe 2022년 6월 25일
the problem are the answers after 5 iterations they appeared in a single row. what i wanted is like a multiple rows.....
1 x0 x1 answer answer Ea
2 x0 x1 answer answer Ea
3 x0 x1 answer answer Ea
4 x0 x1 answer answer Ea.
5 x0 x1 answer answer Ea

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by