How to use result in each iteration in a for loop and then use it in next loop?
Show older comments
how can i use the result of the first iteration in other For loop?
3 Comments
Prasanth Sikakollu
on 12 Jun 2019
What do you mean by the other For loop - nested for loop or next iteration or anything else??
If you can send me the code you wrote, it would be helpful in understanding your problem.
m m
on 12 Jun 2019
Prasanth Sikakollu
on 12 Jun 2019
You can merge both the loops and use the result in the same iteration
for i=1:10
x = 10*i; % This is the value generated
y = x + 1; % Using generated value x to evaluate y
end
Answers (2)
KSSV
on 12 Jun 2019
for i = 1:10
a = rand+rand ; % this is the result in first loop
for j = 1:3
b = a+rand ; % result of first loop used in second loop
end
end
Prasanth Sikakollu
on 12 Jun 2019
Merge both the loops and use the generated result in the same loop.
for i=1:10
x = 10*i; % This is the value generated. Expression on the RHS is a random one
y = x + 1; % Using generated value x to evaluate y
end
Hope this helps
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!