Matrix Manipulation Image Processing

1 visualizzazione (ultimi 30 giorni)
Jes
Jes il 27 Mag 2015
I have a matrix of 100 rows and 2 columns. How to sort the first column of the matrix and write the corresponding second column elements. Please help me. Its Urgent.Thanks in Advance

Risposta accettata

Andrei Bobrov
Andrei Bobrov il 27 Mag 2015
A = rand(100,2); % your matrix
[~,ii] = sort(A(:,1));
out = A(ii,:);
  1 Commento
Jes
Jes il 27 Mag 2015
Thanks a lot. It works. Could you please explain me once . Thanks

Accedi per commentare.

Più risposte (1)

James Tursa
James Tursa il 27 Mag 2015
doc sortrows

Categorie

Scopri di più su Images in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by