How to synchronize signals at different frequency in the same table

5 次查看(过去 30 天)
Hi everyone
I have several signals recorded at different frequency but all of them has been recorded for 5 minutes. So for example I have A at 2000Hz with 600000 samples and B at 100Hz with 30000 samples and so on.
I have a matlab table for each signal, all of them with a timestamp column in EPOCH format. So my talbes are like [TimeStamp, Data].
Now I need to synchronize all the signals but I don't have really clear how I can do it. I was thinking about taking the one at maximum frequency and repeat the data for the slower ones. But even with this policy I don't figure out how I can build a table and then recognize when I should add data from the various signals, depending on their sample rate.
Alternative solutions are accepted.
Thnaks

采纳的回答

Scott MacKenzie
Scott MacKenzie 2021-8-4
A1 = table2timetable(A);
B1 = table2timetable(B);
C1 = table2timetable(C);
TT = synchronize(A1, B1, C1);

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Multirate Signal Processing 的更多信息

产品


版本

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by