How to use nested for loops?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I am very new to MATLAB, and I have been trying to figure out how to use nested for loops correctly. I want to print out :
1
121
12321
1234321
123454321
what should I do if there are a varying number of columns? Any help would be greatly appreciated.
3 comentarios
Walter Roberson
el 10 de Abr. de 2018
for variable = something : something_else
for another_variable = thing2 : thing3
% do something involving variable and another_variable
end
end
Respuestas (1)
Birdman
el 10 de Abr. de 2018
Editada: Birdman
el 10 de Abr. de 2018
No need for nested for loops. Try this:
i=1;n=5;
while i<=n
fprintf('%d',[1:i-1 i:-1:1]);
fprintf('\n');
i=i+1;
end
6 comentarios
Birdman
el 10 de Abr. de 2018
n=5;
for j=1:n
for i=1:j
end
fprintf('%d',[1:i-1 i:-1:1]);
fprintf('\n');
end
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!