How to rearrange a matrix in a preferred order
    5 views (last 30 days)
  
       Show older comments
    
Dear All,
I have a matrix of 40 *3 that is originally is in the numeric order with respect to the first column i.e.
[1 100 234
 2 345 890
 3 455 111
 .
 .
 .
 40 444 555]
However, I would like to rearrange the original matrix based on the following arbitrarily guideline:
   [35 
    20
    2
    4
    1
    .
    .
    39]
Thus, my desired output is a new 40*3 matrix whose first, second and third (and etc) rows are the 35th, 20th and second (and etc) rows of the original matrix. Is there a possible way to rearrange any matrix in the user-defined way as I did in my example above?
Thanks.
0 Comments
Accepted Answer
  Stephen23
      
      
 on 10 May 2016
        
      Edited: Stephen23
      
      
 on 10 May 2016
  
      >> old = randi(9,5,3);
>> old(:,1) = 1:5
old =
   1   6   4
   2   8   9
   3   9   6
   4   1   2
   5   2   5
>> idx = [2,3,5,1,4];
>> new = old(idx,:)
new =
   2   8   9
   3   9   6
   5   2   5
   1   6   4
   4   1   2
Using indexing is a very basic MATLAB concept. To learn this kind of basic usage all beginners should do these tutorials:
2 Comments
  Stephen23
      
      
 on 10 May 2016
				
      Edited: Stephen23
      
      
 on 10 May 2016
  
			My answer shows how to rearrange your matrix based on some indices (you call the indices "arbitrary guideline", but in reality they are simply indices):
yourMatrix(theIndices,:)
That is all. Have you tried this yet?
Now you have given some new explanation or requirements, but not very clearly. What does "as you can see the big matrix rearranged in the group of 40 rows based on the guideline matrix" mean ?
How is the output in your comment different to what you asked in your original question?
More Answers (0)
See Also
Categories
				Find more on Matrix Indexing in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!