필터 지우기
필터 지우기

Basic For Loop problem

조회 수: 1 (최근 30일)
Muhammad Ahsan
Muhammad Ahsan 2021년 1월 30일
댓글: Walter Roberson 2021년 1월 31일
It is not very difficult code but I don't know why I am getting error. The value of the k should be printed like 1, 1, 1, 2, 2, 2, 3, 3, 3, ....... 1000, 1000, 1000 but it does not start from 1, 1, 1. Please help with this very simple question. If I remove a=2+4 and b=a+7 then it is okay.
for k=1:1000
a=2+4;
b=a+7
for i=1:3
k
end
end

채택된 답변

Walter Roberson
Walter Roberson 2021년 1월 30일
b=a+7
change to
b=a+7;
  댓글 수: 2
Muhammad Ahsan
Muhammad Ahsan 2021년 1월 31일
Thank you. I have done this (b=a+7) to (b=a+7;). Actually the problem is that, when I run this code, I get k = 667
k = 668
k = 668
k = 668
k = 669
k = 669
k = ......
The thing is, why it is not starting from k=1, k=1, k=1, .....
Walter Roberson
Walter Roberson 2021년 1월 31일
The rest scrolled off your screen.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by