Multiplication between two matrices with different number of rows

1 回表示 (過去 30 日間)
DV
DV 2022 年 7 月 11 日
コメント済み: DV 2022 年 7 月 11 日
Dear all,
I have two matrices:
A=[42x5];
B=[32x1];
I want to multiply each row of B to each of A.
Kind help needed. Thank you.
  2 件のコメント
Stephen23
Stephen23 2022 年 7 月 11 日
@DV: please show us the size of the expected output array.
DV
DV 2022 年 7 月 11 日
Expected to be: C=[42x32x5];
Thanks!

サインインしてコメントする。

採用された回答

Stephen23
Stephen23 2022 年 7 月 11 日
編集済み: Stephen23 2022 年 7 月 11 日
C = permute(A,[1,3,2]) .* reshape(B,1,[])
  2 件のコメント
Stephen23
Stephen23 2022 年 7 月 11 日
Testing:
A = rand(42,5);
B = rand(32,1);
C = permute(A,[1,3,2]) .* reshape(B,1,[]);
size(C)
ans = 1×3
42 32 5
DV
DV 2022 年 7 月 11 日
Thank you sooooo much!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraphics Object Properties についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by