How to reorder cell array based on the vector

50 visualizaciones (últimos 30 días)
NA
NA el 24 de Mzo. de 2020
Respondida: Sindar el 24 de Mzo. de 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]};

Respuesta aceptada

Sindar
Sindar el 24 de Mzo. de 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);

Más respuestas (0)

Categorías

Más información sobre Data Types en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by