Multiplication of two arrays of different size
조회 수: 19 (최근 30일)
이전 댓글 표시
I have two arrays of different size. For example, one array is 43008*24 and other one 33792*24. Ho can I multilpy them?
댓글 수: 3
the cyclist
2023년 5월 2일
Let's make a smaller, manageable version of what you are asking for. Suppose
A = [2 3; 5 7; 11 13]
B = [4 6; 8 9; 10 12; 14 15]
You want C that somehow equals the product of A and B. What is the result in this case?
답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Operators and Elementary Operations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!