how to do 1 to 1 matrix multiplication?
3 次查看(过去 30 天)
显示 更早的评论
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.
采纳的回答
更多回答(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!