Divide each element of an array by the corresponding element of another array

25 ビュー (過去 30 日間)
Greg Dunphy
Greg Dunphy 2021 年 7 月 29 日
回答済み: dpb 2021 年 7 月 29 日
I have 2 cell arrays of numbers, e.g.:
a = [1, 2, 3]
b = [4, 5, 6]
and I want to divide each element of a by the corresponding element of b (1/4, 2/5, and 3/6). In python I used the 'zip' function to achieve this, but I'm not sure if anything similar exists in Matlab. Here is what I have done so far but this is not working:
for num = a
newnum = cell2mat(num);
output = newnum / b(num);
outputs(end+1) = output;
end
Thanks for the help guys, I'm brand new to Matlab so apologies for the code!
  2 件のコメント
dpb
dpb 2021 年 7 月 29 日
c=a./b;
Read the "Getting Started" to get basic syntax...
Jan
Jan 2021 年 7 月 29 日
編集済み: Jan 2021 年 7 月 29 日
Ouch - for the code :-)
See https://www.mathworks.com/learn/tutorials/matlab-onramp.html for a tutorial for the Matlab basics in addition to dpb's suggestion.
@dpb: Please post this as answer, because it solves the problem.

サインインしてコメントする。

回答 (1 件)

dpb
dpb 2021 年 7 月 29 日
c=a./b;
Read the "Getting Started" to get basic syntax...

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by