Vector Matrix multiplication (Row wise)
显示 更早的评论
Hi, I need to multiply each row of very large matrix with a row of corresponding vector. I don't really want to use for loop for that, i.e.,
N=15000;
L=rand(N,N); V=rand(N,1);
for i=1:1:N
L(i,:)=V(i)*L(i,:);
end
is it possible to do this in vectorized way?
Thank you
Erdem
采纳的回答
更多回答(3 个)
Vladimir Kazei
2017-10-9
编辑:Vladimir Kazei
2017-10-9
2 个投票
L = L .* V;
James Tursa
2015-9-16
L = bsxfun(@times,L,V);
类别
在 帮助中心 和 File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!