How to code NESTED CYCLES
Show older comments
f=[3 6 3 9]
b=[5 8 10 12]
a is a function with parameter f and b!
for l=1:numel(b)
for i=1:numel(f)
a(f(i),b(l))
end
end
but this is a problem:
if b is empty the function won't loop me with "f"
1 Comment
Matt J
on 9 Sep 2023
That doesn't seem like a problem.
Accepted Answer
More Answers (2)
Reverse the 2 loops, then it loops on f
f=[3 6 3 9]
b=[]
for i=1:numel(f)
f(i)
for l=1:numel(b)
a(f(i),b(l))
end
end
2 Comments
pipor
on 9 Sep 2023
Bruno Luong
on 9 Sep 2023
Edited: Bruno Luong
on 9 Sep 2023
Split in three loops if you have to
for i=1:numel(f)
for l=1:numel(b)
% ... do something with both f(i) and b(l)
a(f(i),b(l))
end
end
for i=1:numel(f)
% ... do something with f(i) ALONE
end
for l=1:numel(b)
% ... do something with b(l) ALONE
end
Image Analyst
on 9 Sep 2023
Check them in advance:
if isempty(b)
% What to do
return;
end
if isempty(f)
% What to do
return;
end
for l=1:numel(b)
for i=1:numel(f)
something = a(f(i),b(l))
end
end
2 Comments
pipor
on 9 Sep 2023
Moved: Dyuman Joshi
on 9 Sep 2023
Image Analyst
on 10 Sep 2023
Correct. Why would you want to continue if one is empty? If you do you'll just get an error. If you can "fix" the situation, do so inside the if -- for example Star set them to nan instead. If you can't fix the situation, you should just exit the code after alerting the user.
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!