how to divide two matrix
125 ビュー (過去 30 日間)
古いコメントを表示
hi everyone I have 2 matrix like
a=[10 12 15;15 16 18;14 18 19;15 19 25;23 45 75]
b=[2 4 5;1 2 2;4 8 6;1 4 7;5 1 2]
how can I divide each elements of matrix "a" by corresponding value in matrix "b" to have
c=[5 3 3;15 8 9;........]
? the original matrix are big. Thanks
0 件のコメント
採用された回答
the cyclist
2017 年 2 月 3 日
編集済み: the cyclist
2017 年 2 月 3 日
c = a./b;
This is a very basic MATLAB question. I suggest you google "matlab tutorial" and look through some of the excellent (and free) online material that is available.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!