필터 지우기
필터 지우기

How to have elementwise multiplication expand in two dimensions?

조회 수: 2 (최근 30일)
AlexRD
AlexRD 2022년 6월 24일
댓글: AlexRD 2022년 6월 25일
So I'm trying to optimize my code, and one aspect where it could really improve is to change one for loop to a SIMD instruction.
In short, I have two variables: A (16 x 16 x 3 x 100) and B(16 x 16 x 3 x 7)
What I want to do is to get an elementwise multiplication that expands to both the 100 and 7 dimensions, concatenating and returning a variable of size C (16 x 16 x 3 x 700).
If i do A .* B(:, :, :, 1) it automatically expands to the 100, but then i'd need a 7 iteration for loop concatenating along B.
How do i do this without a for loop?
Thanks!

채택된 답변

Matt J
Matt J 2022년 6월 24일
편집: Matt J 2022년 6월 24일
C=A.*reshape(B,[16,16,3,1,7]);
C=reshape(C,[16,16,3,700]);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Execution Speed에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by