I want to divide each row of a matrix with corresponding element in another matrix .Please help.
84 ビュー (過去 30 日間)
古いコメントを表示
For eg: I have a matrix
A=[9 6 3;
4 2 8;
1 0 0;]
divide A by B=[3 2 1] to get the result
C=[3 2 1;
2 1 4;
1 0 0;]
0 件のコメント
採用された回答
その他の回答 (2 件)
First Last
2018 年 3 月 28 日
編集済み: First Last
2018 年 3 月 28 日
Make sure B is transposed to a column vector, i.e.,
C=A./B';
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!