Sorting array by datetimes does not work
Show older comments
Hi,
I need to sort my array, notSorted.mat, by datetimes as strings. The code I use for this is the following:
[~, idx] = sort(datenum(notSorted(:,2), 'dd-MM-yyyy HH:mm'), 1, 'ascend');
sorted = notSorted(idx,:);
However, this does not work. Some values are still not correctly sorted. Does anybody know what went wrong?
Answers (1)
Mischa Kim
on 4 Jan 2021
T = sortrows(cell2table(HR_date_time_strings),2)
5 Comments
Tycho Maas
on 4 Jan 2021
Edited: Tycho Maas
on 4 Jan 2021
Mischa Kim
on 4 Jan 2021
Edited: Mischa Kim
on 4 Jan 2021
Right you are.
DT = datetime({HR_date_time_strings{:,2}}','InputFormat','dd-MM-yyyy HH:mm','Format','preserveinput');
T = sortrows(table({HR_date_time_strings{:,1}}',DT(:)),2)
Tycho Maas
on 5 Jan 2021
Mischa Kim
on 5 Jan 2021
The code runs fine with R2020b. What release are you working with?
Tycho Maas
on 7 Jan 2021
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!