How to multiply dimension matrix ???
2 次查看(过去 30 天)
显示 更早的评论
Hi, I have matrix with dimension like below :
A = 220 x 1;
B = 220 x 11;
I want
C = 1 x 11
Im trying this code
C = bsxfun(@times,A,B);
the result is C = 220 x 1.
Is there possible I get result C = 1 x 11 ???
any help will be must appreciated. Thanks
采纳的回答
madhan ravi
2018-11-15
编辑:madhan ravi
2018-11-15
clear all
A=rand(220,1)'; %AN EXAMPLE
B=rand(220,11);
A*B
8 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!