Division using for loop

5 views (last 30 days)
Drew Eager
Drew Eager on 17 Aug 2021
Commented: darova on 19 Aug 2021
Hi All,
I need to use for loop to divide elements of two arrays. I know it's more effcient to use vectors but the task specifies for loop.
eg.
A= [1 2 3 4 5]
B = [2 3 4 5 6]
How do I divide each element by the corresponfin element in A & B using for loop?
Thanks

Answers (1)

Awais Saeed
Awais Saeed on 17 Aug 2021
A= [1 2 3 4 5]
B = [2 3 4 5 6]
for col = 1:1:size(A,2)
result(col) = A(col)/B(col); % equal to A./B right division
end
  2 Comments
Drew Eager
Drew Eager on 17 Aug 2021
That works, very helpful. Thank you.
darova
darova on 19 Aug 2021
too easy for me

Sign in to comment.

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!