How to find the multiplication or division value of a matrix for each row and column in matlab
조회 수: 22 (최근 30일)
이전 댓글 표시
I want to find the multiplication or division value of a matrix for each row and column in matlab. For example:
A= [1,2,3;4,5,6;7,8,9]
B=[3,8,6;2,4,1;5,6,7]
Result=
[1*3 2*8 3* 6
4*2 5*4 6*1
7*5 8*6 9*7]
=[ 3,16,18;8,20,6;35,54,63]
How do I do it? Thank you.
댓글 수: 0
채택된 답변
Matt J
2024년 11월 22일 15:18
A.*B
A./B
댓글 수: 2
Image Analyst
2024년 11월 24일 3:43
To learn other fundamental concepts, invest 2 hours of your time here:
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!