How to sort a structure array based on a specific field

143 vues (au cours des 30 derniers jours)
MathWorks Support Team
MathWorks Support Team le 17 Avr 2018
Modifié(e) : Bruno Luong le 3 Août 2020
How do we sort a structure array based on a specific field?

Réponse acceptée

MathWorks Support Team
MathWorks Support Team le 17 Avr 2018
We have an instruction blog on how to do that in older versions of MATLAB (before R2013b):
If you are using a MATLAB version newer than R2013b, you can take advantage of the "sortrows" function in tables for a simpler workflow:
>> % suppose 's' is the struct array. 'DOB' is the field that contains date and time.
>> T = struct2table(s); % convert the struct array to a table
>> sortedT = sortrows(T, 'DOB'); % sort the table by 'DOB'
>> sortedS = table2struct(sortedT) % change it back to struct array if necessary

Plus de réponses (1)

Norbert Nitzsche
Norbert Nitzsche le 25 Juil 2019
Modifié(e) : Norbert Nitzsche le 25 Juil 2019
% suppose 's' is the struct array and you want to sort it by the values in field 'f_sortby'
[x,idx]=sort([s.f_sortby]);
s=s(idx);
  1 commentaire
Bruno Luong
Bruno Luong le 3 Août 2020
Modifié(e) : Bruno Luong le 3 Août 2020
"Using curly braces should work for both numerical and text values"
Not for me
>> s=struct('num', {1 2 3})
s =
1×3 struct array with fields:
num
>> s(1)
ans =
struct with fields:
num: 1
>> s(3)
ans =
struct with fields:
num: 3
>> [x,idx]=sort({s.num})
Error using sort
Input argument must be a cell array of character vectors.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Structures dans Help Center et File Exchange

Tags

Aucun tag saisi pour le moment.

Produits


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by