Synchronize timetables stored in a structure
3 ビュー (過去 30 日間)
古いコメントを表示
Giovanni Barbarossa
2023 年 7 月 30 日
コメント済み: Giovanni Barbarossa
2023 年 7 月 31 日
I have a structure S with N fields F_1 to F_N. Each field stores a timetable T_1 to T_N, respectively. How do I synchronize the timetables and keep them in the same structure?
4 件のコメント
Walter Roberson
2023 年 7 月 30 日
I am not currently convince that you want to synchronize().
I suspect that what you want to do is to retime() all of them to the same timestamps (the ones available for T_1)
採用された回答
Walter Roberson
2023 年 7 月 30 日
One possible interpretation of your question:
Sc = struct2cell(S);
joint = sortrows(vertcat(Sc{:}));
synchronized = structfun(@(F) synchronize(F, joint, 'union'), S, 'uniform', 0);
This (tries to) synchronize each of the timetables against all of the other ones, by combining all of them together into one and synchronizing against that.
2 件のコメント
Walter Roberson
2023 年 7 月 31 日
NT1 = S.T_1.Properties.RowTimes;
Retimed = structfun(@(F) retime(F, NT1, 'linear', 'EndValues', 'linear'), S, 'uniform', 0);
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Timetables についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!