how to multiplying two matrices in following way
조회 수: 1 (최근 30일)
이전 댓글 표시
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.
댓글 수: 0
채택된 답변
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
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!