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)

 Accepted Answer

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 Comments

that means it will run from 1 to first element of array ?is it so ?
Yes...the first element is 5, it will run from 1 to 5.
Thanks is accepting the answer....;)

Sign in to comment.

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Asked:

on 17 Nov 2016

Commented:

on 17 Nov 2016

Community Treasure Hunt

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

Start Hunting!