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!