Azzera filtri
Azzera filtri

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

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

Risposta accettata

KSSV
KSSV il 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 Commenti
KSSV
KSSV il 17 Nov 2016
Thanks is accepting the answer....;)

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by