필터 지우기
필터 지우기

fprintf: display for-loop index/start a new line

조회 수: 13 (최근 30일)
Matlab_Student
Matlab_Student 2016년 4월 15일
댓글: Matlab_Student 2016년 4월 15일
for i = 1:5
fprintf('Current number is',i,'\n');
end
I am trying to print the for-loop index each time, starting at a new line, the loop is executed. So I would like the program to print 'Current number is 1', and, on the next line, 'current number is 2', etc. I am having two problems with this code: it won't display the index and it does not start a new line.
Any advice will be appreciated!

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2016년 4월 15일
for i = 1:5
fprintf('Current number is %d\n',i);
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by