Division using for loop

7 次查看(过去 30 天)
Drew Eager
Drew Eager 2021-8-17
评论: darova 2021-8-19
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

回答(1 个)

Awais Saeed
Awais Saeed 2021-8-17
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

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by