Effacer les filtres
Effacer les filtres

How to 'carry' matrix index with matrix operations

2 vues (au cours des 30 derniers jours)
Xiaohan Du
Xiaohan Du le 15 Nov 2016
Hi all,
I'd like to keep the matrix index while carrying out matrix operations, for example:
a = randi([1 20], 1, 5)';
indx = find(a);
c = [indx a];
b = sort(a);
I obtain:
a = [15 10 2 5 19]'; c = [1 2 3 4 5; 15 10 2 5 19]'; b = [2 5 10 15 19]';
After sort, how can I keep the old correspondence of index and vector in new matrix b? i.e. I want b to be something like this:
b = [3 4 2 1 5; 2 5 10 15 19]';
Thanks!

Réponse acceptée

Roger Stafford
Roger Stafford le 15 Nov 2016
Modifié(e) : Roger Stafford le 15 Nov 2016
Use the second quantity returned by the 'sort' function:
[b,p] = sort(a);
The 'p' is an index for rearranging the first row from 1,2,3,4,5 to 3,4,2,1,5 with indx(p).
  1 commentaire
Xiaohan Du
Xiaohan Du le 15 Nov 2016
Thanks Roger! I should have checked the function help!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Shifting and Sorting Matrices dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by