how to multiplying two matrices in following way

1 回表示 (過去 30 日間)
mahesh chathuranga
mahesh chathuranga 2013 年 10 月 4 日
編集済み: Image Analyst 2013 年 10 月 4 日
my first matrix is
a=[1 2;
3 4;
5 6];.my second matrix is
b=[3 5;
0 2;
5 7];.
I want to obtain
c=[3 10;
0 8;
25 42;];.how can i do this.

採用された回答

Image Analyst
Image Analyst 2013 年 10 月 4 日
編集済み: Image Analyst 2013 年 10 月 4 日
c = a .* b;
The dot before the * is important. Otherwise you'd be doing a matrix multiplication, not an element by element multiplication.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by