How to reorder cell array based on the vector

54 visualizzazioni (ultimi 30 giorni)
NA
NA il 24 Mar 2020
Risposto: Sindar il 24 Mar 2020
I have
index = [1; 2; 4; 3; 7; 6; 5];
list = {[1158;1159], [1543;1544], [2020;2096;2173], [2159], [4836], [5374], [5492;5493]};
list_sort = cellfun(@(x) x(index') ,list,'UniformOutput',false );
List_sort should be
list_sort = {[1158;1159], [1543;1544], [2159], [2020;2096;2173], [5492;5493], [5374], [4836]};

Risposta accettata

Sindar
Sindar il 24 Mar 2020
index = [1; 2; 4; 3; 7; 6; 5];
list = {[1158;1159], [1543;1544], [2020;2096;2173], [2159], [4836], [5374], [5492;5493]};
list_sort = list(index);

Più risposte (0)

Categorie

Scopri di più su Data Types in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by