sort a structure

8 views (last 30 days)
Philip
Philip on 28 Sep 2011
Is it possible to create a structure that holds the following information:
  • id_number
  • length
such that I can then sort the structure by length from largest to smallest. I then want to retrieve the id_number for the top 5 elements.

Accepted Answer

Daniel Shub
Daniel Shub on 28 Sep 2011
something like:
s = struct('id_number', mat2cell(1:100, 1, ones(100, 1)), 'length', mat2cell(rand(1, 100), 1, ones(100, 1)));
[a, b] = sort([s.length]);
[s(b(1:5)).id_number]
  1 Comment
Philip
Philip on 28 Sep 2011
Thanks! That worked perfectly!

Sign in to comment.

More Answers (0)

Categories

Find more on Shifting and Sorting Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!