Timeable Table/ Synchronize Problem
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
jcclar12
le 3 Nov 2022
Réponse apportée : Santosh Fatale
le 10 Nov 2022
Hello again,
I am looking to synchronize two tables. I was able to create a timetable for one table using sample rate time looking like this (first column is time, second column is variable, this time starts at 0):
A =
1.2 555
1.21 543
1.22 875
1.23 212
The second table I want to convert to a timeable table but looks completely different. Like this(first column is time, second is variable, this time starts at 231.1):
B=
234.1 10
234.7 70
400.4 30
600.5 10
I want to combine both tables to one table, however I want 'B' to show the time in the appropriate place in a similar format as A.
Ideally I would want it to look like this:
A+B=
234.1 344 10
234.2 0 0
234.3 0 0
234.4 0 0
234.5 0 0
234.6 0 0
234.7 76 70
Hopefully you get the idea. How would I do that in Matlab? I know Rstudio has a function called 'rbind' that might be able to do this.
The code I have for 'B' is
table2timetable(B,'SampleRate',100)
Thank you.
Réponse acceptée
Santosh Fatale
le 10 Nov 2022
Hi Jeska,
I believe you are able to convert table variable "A" into timetable format. For table variable "B", you can use "table2timetable" function with option 'RowTimes' and can use first column of table variable "B" as timeVarName.
To synchronize these two timetable variables, you can either use
newTT = [ttA; ttB]; % Vertical concatenation
newTT = [ttA ttB] % Horizontal concatenation
or use "synchronize" function to synchronize two timetable variables.
For more information, check out these links.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Tables dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!