Basic loop syntax in MATLAB: for k=1:n

20 views (last 30 days)
mohib manzoor
mohib manzoor on 28 Jan 2011
Commented: Walter Roberson on 29 Mar 2021
What does it mean
for k=1:n
  2 Comments
Walter Roberson
Walter Roberson on 29 Mar 2021
It is as described in the responses rom Sean and I, with n being 3.

Sign in to comment.

Answers (2)

Sean de Wolski
Sean de Wolski on 28 Jan 2011
it means that everything between that line
k = 1:n
and
end
will be evaluated with k = every integer between 1 and n.
doc for
for more information

Walter Roberson
Walter Roberson on 28 Jan 2011
(Adjusting Sean's answer):
it means that everything between that line
k = 1:n
and
end
will be evaluated with k = every integer starting at 1 and not exceeding n; no iterations will be done at all if n < 1
doc for
for more information
  4 Comments
Matt Fig
Matt Fig on 28 Jan 2011
Jan, how do you remember these things! There are obviously no angry armadillos bouncing around in your head.

Sign in to comment.

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!