How to muliply non equal vectors with slicing?
조회 수: 1 (최근 30일)
이전 댓글 표시
A = 1:12;
B = 1:4;
I am looking for a function that performs multiplication as follows:
- Matrix B has 4 elements and matrix A has 12 elements. I want to multiply B with A, in a sequence of multiplying B with A(1:4), and next B with A(5:8), and so on.
- I want to perform this complete operation in one instance with some matlab function or vectorization without any loops involved
Could some one help me in this regard?
댓글 수: 0
답변 (1개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!