please explain this statement for img = 1:s(1)

which type of for loop is this ? please explain the below statement.Thanks in advance.
for img = 1:s(1)

 채택된 답변

KSSV
KSSV 2016년 11월 17일

0 개 추천

s should be array which is already defined. It is a for loop which runs from 1 to s(1).
Eg:
s = [5 6 7 8] ;
for img = 1:s(1)
img
end

댓글 수: 4

Kanwal Kaur
Kanwal Kaur 2016년 11월 17일
that means it will run from 1 to first element of array ?is it so ?
KSSV
KSSV 2016년 11월 17일
Yes...the first element is 5, it will run from 1 to 5.
Kanwal Kaur
Kanwal Kaur 2016년 11월 17일
ok.Thanks :)
KSSV
KSSV 2016년 11월 17일
Thanks is accepting the answer....;)

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

추가 답변 (0개)

카테고리

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

질문:

2016년 11월 17일

댓글:

2016년 11월 17일

Community Treasure Hunt

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

Start Hunting!

Translated by