フィルターのクリア

Sort cell array by datetime

135 ビュー (過去 30 日間)
Tycho Maas
Tycho Maas 2020 年 12 月 23 日
回答済み: Eric Sofen 2021 年 1 月 5 日
I want to sort an array, that looks like the one below, by datetime.
70 26-Nov-2020 10:50:29
84 26-Nov-2020 10:00:00
79.5 26-Nov-2020 14:35:20
53 29-Nov-2020 12:31:00
Any idea how to do this?

採用された回答

Jemima Pulipati
Jemima Pulipati 2020 年 12 月 26 日
Hello,
From my understanding, you want to sort the rows in the cell array according to the datetime values mentioned in the column.
You may use the sort() function which sorts the elements of the input in the order specified.
Here is an example code (sorts in ascending order) using the data you mentioned:
% sample cell array
a = {70, '26-Nov-2020 10:50:29';
84, '26-Nov-2020 10:00:00';
79.5, '26-Nov-2020 14:35:20';
53, '29-Nov-2020 12:31:00'};
[~, idx] = sort(datenum(a(:,2), 'dd-mm-yyyy hh:MM:ss'), 1, 'ascend');
sortedData = a(idx,:);
Here are some answers from the community which might be of relevance to you:
  1 件のコメント
Tycho Maas
Tycho Maas 2020 年 12 月 26 日
Thanks!

サインインしてコメントする。

その他の回答 (1 件)

Eric Sofen
Eric Sofen 2021 年 1 月 5 日
Even better, since you're working with data where each column has a different type, consider using a timetable.
t = table2timetable(cell2table(a));
t = sortrows(t);

カテゴリ

Help Center および File ExchangeDates and Time についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by