Array Manipulations
Built-in functions › Mathematics › Array Manipulations
15 functions in this category.
| Function | What it does |
|---|---|
blkdiag | Block-diagonal matrix from input matrices. |
cat | Concatenate arrays along a specified dimension. |
circshift | Circularly shift elements of an array. |
diag | Extract a diagonal, or build a matrix from a diagonal. |
flipdim | Flip an array along the specified dimension. |
fliplr | Flip an array left-to-right (reverse columns). |
flipud | Flip an array upside down (reverse rows). |
ipermute | Inverse permute — undo a permute operation. |
permute | Rearrange dimensions of an N-D array. |
repelem | Replicate array elements (per-element repetition). |
repmat | Tile an array by replicating its contents. |
reshape | Reshape an array without changing its data. |
rot90 | Rotate a matrix 90 degrees counter-clockwise. |
sortrows | Sort rows of a matrix or table by column values. |
squeeze | Remove singleton dimensions. |