sort cell array in descending order based on 2nd column

12 visualizaciones (últimos 30 días)
jahanzaib ahmad
jahanzaib ahmad el 26 de Mzo. de 2019
Comentada: Adam Danz el 26 de Mzo. de 2019
i have cell array and want to sort it based on 2nd column .
i have tried this
[~,idx] = sort([AA{:,2}]);
idx([1:2:end,2:2:end]) = idx;
B = AA(idx,:);
but 2nd column in not in descending order .

Respuesta aceptada

Adam Danz
Adam Danz el 26 de Mzo. de 2019
Editada: Adam Danz el 26 de Mzo. de 2019
The [65 x 2] cell array in your mat file is named "A1".
[~, idx] = sort([A1{:,2}], 'descend');
A1_descendingOrder = A1(idx,:)

Más respuestas (0)

Categorías

Más información sobre Shifting and Sorting Matrices en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by