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

12 vues (au cours des 30 derniers jours)
Matlab_Student
Matlab_Student le 15 Avr 2016
Commenté : Matlab_Student le 15 Avr 2016
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!

Réponse acceptée

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

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by