multiply lines of a matrix by a line

조회 수: 3 (최근 30일)
Martin
Martin 2013년 9월 13일
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!

답변 (1개)

Andrei Bobrov
Andrei Bobrov 2013년 9월 13일
편집: Andrei Bobrov 2013년 9월 13일
try bsxfun:
C = bsxfun(@times,A,b);
  댓글 수: 1
Martin
Martin 2013년 9월 13일
Absolutely perfect. :)
Thanks so much!!

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by