Block transposition, permutation, and reshaping of arrays

バージョン 1.1.4 (12.6 KB) 作成者: Matt J
Analogues for transpose(), reshape(), and permute() but where sub-blocks of the array are treated as scalar elements.
ダウンロード: 55
更新 2024/4/11

ライセンスの表示

MATLAB provides various functions like permute(), transpose(), and reshape() allowing one to change the dimensions of an array and reorder its elements. At times, however, I find I wish to do things similar to these, but where instead of reordering the individual scalar entries of an array, certain sub-blocks are treated as the "elements". Thus, for instance, if A, B, C, and D are matrices of the same size and M=[A B;C D] is a block matrix, I would like to transpose the block positions to obtain M=[A C; B D] but without reordering the contents of the sub-matrices A,B,C, and D themselves.
This FEX submission contains a set of files for doing just this kind of thing. The assumption throughout is that the sub-blocks are equal-sized sub-tiles of the given array. The tools work on any MATLAB array that can be reshaped and permuted in N-dimensions. They will also work for sparse matrices if you download my ndSparse class.
The usage of these tools is demonstrated in the Examples tab.

引用

Matt J (2024). Block transposition, permutation, and reshaping of arrays (https://www.mathworks.com/matlabcentral/fileexchange/115340-block-transposition-permutation-and-reshaping-of-arrays), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R2021b
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!
バージョン 公開済み リリース ノート
1.1.4

Fixed bug in ndSparse support

1.1.3

Fixed bug in blkReshape, triggered when target dimensions are given as comma-separated list.

1.1.2

Small documentation fix.

1.1.1

Typo correction.

1.1.0

Added blkSize, blkLength, blkNumel for dimension querying

1.0.0