Using smoothdata on tallaray that contains time
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Good evening, I'm attempting to use the "smoothdata" on a tallarray that contains timestamps in one of the columns (I have a sensor that is modeling spacecraft reaction wheel speeds), but when I perform a gather to create the new maxtrix I get the following error. I have, also provided the input data format. I can work around the issue by just having the spacecraft time in seconds, but I wanted to reach out.
Oh, I also did not convert the tallarray to a timetable.
Thanks.
"Error using tall/smoothdata>iTabularWrapper (line 191) Table variables must be numeric. Learn more about errors encountered during GATHER.
Error in tall/smoothdata (line 50) y = iTabularWrapper(A,opts,fcn);"
SCTIME RWXSPEED RWYSPEED RWZSPEED
______________________ ________ ________ ________
18-043-00:36:48.018524 20.974 310 -40.924
18-043-00:36:49.018524 20.974 310 -40.924
18-043-00:36:50.018524 20.974 310 -40.924
3 commentaires
Réponses (1)
Chris Turnes
le 21 Mar 2018
smoothdata does not support tall timetables, and similarly does not support the 'SamplePoints' Name-Value pair for tall inputs. If it's acceptable for your data to perform an 80-point Savitzky-Golay filter without using the timestamps (in other words, the filtering just goes by the index of the data value and does not use its associated timestamps for the regression), then you can use the 'DataVariables' Name-Value pair to select the numeric variables of your tall table and apply the approach that you've used so far.
0 commentaires
Voir également
Catégories
En savoir plus sur Data Preprocessing dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!