How to do: "for each value of the vector A"

132 views (last 30 days)
AlexDp
AlexDp on 14 Sep 2019
Commented: Robin Amar on 23 Dec 2021
Hi all,
i'd like to know how is possible to get the iteration for each element of a vector. I show an example.
A=[14 5 7 3 8];
for i=each element of A
etc
end
Thanks to all will answer me.

Answers (1)

madhan ravi
madhan ravi on 14 Sep 2019
for ii = 1:numel(A) % this is for illustration purposes
A(ii)
end
  4 Comments
Stephen23
Stephen23 on 15 Sep 2019
Note that in most real-world code, looping over indices (as per madhan ravi's original answer), is much more useful.
Robin Amar
Robin Amar on 23 Dec 2021
Thanks for the 2nd Suggestion @madhan ravi. I wanted precisely this answer.
This operation is straight forward in Python as well.

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!