how to do 1 to 1 matrix multiplication?
2 ビュー (過去 30 日間)
古いコメントを表示
Shubham Mohan Tatpalliwar
2018 年 11 月 26 日
編集済み: madhan ravi
2018 年 11 月 26 日
i want to do a multiplication between 2 matrix but the Resultant matrix should be as in example
A=[1 2; 3 4]
B=[1 4 ; 2 3]
C=[1 8 ; 6 12]
if we do A.*B
I want it as C
like 1*1=1
2*4=8...
2 件のコメント
madhan ravi
2018 年 11 月 26 日
The OP wants to fliplr the second column of A and to multiply it with B to get C.
採用された回答
madhan ravi
2018 年 11 月 26 日
編集済み: madhan ravi
2018 年 11 月 26 日
C=A.*B %what‘s wrong with this then?
0 件のコメント
その他の回答 (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!