Permute a Matrix
by Andrey Popov
27 Aug 2009
(Updated 29 Oct 2009)
From given order of rearrangement constructs the permutation matrix P and computes B = P'*A*P
|
Watch this File
|
| File Information |
| Description |
PERMM Permutates a matrix A by given indexes by computing B = P'*A*P
B = permm(A,indx)
[B,P] = permm(A,indx)
The function applies simultaneous column and row permutation, that is by
given indexes indx = [k j m ...] the function rearranges the elements of A
so that B11=Akk, B12=Akj, ... B21 = Ajk, B22=Ajj, ...
Example
A = [11 12 13 % initial matrix
21 22 23
31 32 33]
idp = [2 3 1] % order of rearrangement
B = permm(A, idp); % rearranged matrix
% B = [22 23 21
% 32 33 31
% 12 13 11] |
| MATLAB release |
MATLAB 7.2 (R2006a)
|
|
Tags for This File
|
| Everyone's Tags |
|
| Tags I've Applied |
|
| Add New Tags |
Please login to tag files.
|
| Updates |
| 29 Oct 2009 |
Implements some checks of the input variables and an easier construction of the permutation matrix. |
|
Contact us at files@mathworks.com