How to split a 2xN matrix into multiple 2x2 matrices?
조회 수: 2 (최근 30일)
이전 댓글 표시
How to split a 2xN matrix into multiple 2x2 matrices? and multiply them.
댓글 수: 0
채택된 답변
Dyuman Joshi
2024년 3월 19일
%Assuming N is a multiple of 2
y = randi(10, 2, 16)
%Reshaping into 2x2 blocks
y = reshape(y, 2, 2, [])
z = y(:,:,1);
for k=2:size(y,3)
z = z*y(:,:,k);
end
z
댓글 수: 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!