multiply lines of a matrix by a line

1 view (last 30 days)
Martin
Martin on 13 Sep 2013
Hi,
given a matrix A = (Aij) and an horizontal array b = (bj), with B and A of the same width, is there a command that returns a matrix C of the same size as A, and whose each element Cij = Aij * bj ?
I tried C = A .* b but it only works when A is an array as b.
Thanks!

Answers (1)

Andrei Bobrov
Andrei Bobrov on 13 Sep 2013
Edited: Andrei Bobrov on 13 Sep 2013
try bsxfun:
C = bsxfun(@times,A,b);

Categories

Find more on Operators and Elementary Operations in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!