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
Walter Roberson 2018년 4월 10일
What have you tried so far?
Yasmin Touly
Yasmin Touly 2018년 4월 10일
@Walter Roberson, since it is not an array, I am not sure what exactly I should do. I am lost.
for variable = something : something_else
for another_variable = thing2 : thing3
% do something involving variable and another_variable
end
end

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

답변 (1개)

Birdman
Birdman 2018년 4월 10일
편집: Birdman 2018년 4월 10일

0 개 추천

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

Walter Roberson
Walter Roberson 2018년 4월 10일
... This was a homework question. It has come up before as a homework question.
Birdman
Birdman 2018년 4월 10일
There is nothing mentioned in the question that it is a homework.
Yasmin Touly
Yasmin Touly 2018년 4월 10일
@Birdman, But cant i use nested for loops for this?
Birdman
Birdman 2018년 4월 10일
Of course you can, but isn't this one simpler?
Yasmin Touly
Yasmin Touly 2018년 4월 10일
@Birdman, it is, but I wanted to know how I can specifically use nested for loops for this particular question.
n=5;
for j=1:n
for i=1:j
end
fprintf('%d',[1:i-1 i:-1:1]);
fprintf('\n');
end

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

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

질문:

2018년 4월 10일

댓글:

2018년 4월 10일

Community Treasure Hunt

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

Start Hunting!

Translated by