Clear Filters
Clear Filters

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

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

Accepted Answer

KSSV
KSSV on 17 Nov 2016
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
KSSV
KSSV on 17 Nov 2016
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

Community Treasure Hunt

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

Start Hunting!