help I need matlab code that multiply each element in each coulmn by a each element in avector with the same length

3 次查看(过去 30 天)
help I need matlab code that multiply each element in each coulmn by a each element in avector with the same length

采纳的回答

Star Strider
Star Strider 2015-1-13
编辑:Star Strider 2015-1-13
Use bsxfun:
m = rand(10,5);
v = rand(10,1);
vm = bsxfun(@times, v, m);
Here, ‘m’ is the matrix, ‘v’ is the vector, and ‘vm’ is the element-by-element product of the columns of ‘m’ and column vector ‘v’.
  4 个评论

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by