필터 지우기
필터 지우기

the loop, for h=1:1 is running like 200 times. can anyone help me to understand with this ?

조회 수: 2 (최근 30일)
The code with for loop h=1:1 whose initVal:endVal are same, can it be run 100 or more times ?

채택된 답변

KSSV
KSSV 2016년 12월 1일
To run for loop 100 times you have to use
for i = 1:100
%%do what you want
end
If initval and endval are same your code runs only once.
You can also use while loop, like below:
count = 0 ;
while count~=100
count = count+1 ;
end
  댓글 수: 5
KSSV
KSSV 2016년 12월 1일
for h = 1:1 it runs only once....if you want to check type h after line 23...it takes only h = 1.
HABILA
HABILA 2016년 12월 1일
ohh... okay..... need to study more. Thanks anyway...

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

추가 답변 (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