Block transposition, permutation, and reshaping of arrays

Versión 1.1.4 (12,6 KB) por Matt J
Analogues for transpose(), reshape(), and permute() but where sub-blocks of the array are treated as scalar elements.
54 descargas
Actualizado 11 abr 2024

Ver licencia

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.

Citar como

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. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2021b
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!
Versión Publicado Notas de la versión
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