how to multiply matrix vectors with one column?

2 次查看(过去 30 天)
if i have matrix M = [1 0 1 0; 1 0 0 1;1 1 1 0;1 1 1 1; ...] and i want to multiply each row with one cloumn B=[1 0 0 1] how to do this?

采纳的回答

Mohammad Abouali
Mohammad Abouali 2014-11-9
M*B'
  3 个评论
Mohammad Abouali
Mohammad Abouali 2014-11-9
编辑:Mohammad Abouali 2014-11-9
B' is 4x1 M is 4x4 then C=M*B' would be also 4x1. then you can not compute C*M since C is 4x1 and M is 4x4.
But you can compute C1=M*C and then C2=M*C1. Exactly as we are writing this.
sara
sara 2014-11-9
编辑:sara 2014-11-9
that what i meant....C1=M*C and then C2=M*C1. and so on until one answer is repeated. i try to use for loop but it didn't work

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by