sorting one field of struct

3 views (last 30 days)
Baba
Baba on 30 May 2012
files=dir('*.dat');
i want to sort files.name of the files struct by file name

Accepted Answer

Walter Roberson
Walter Roberson on 30 May 2012
[junk, idx] = sort({files.name});
sortedfiles = files(idx);

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!