How to use nested for loops?
조회 수: 4 (최근 30일)
이전 댓글 표시
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
Walter Roberson
2018년 4월 10일
for variable = something : something_else
for another_variable = thing2 : thing3
% do something involving variable and another_variable
end
end
참고 항목
카테고리
Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!