Using smoothdata on tallaray that contains time

1 view (last 30 days)
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 Comments
Marcel Mabson
Marcel Mabson on 21 Mar 2018
I'm using a tall array, when I looked at 'A-Z functions that are supported under tall arrays' timetables are not supported when "smoothdata" is used. I'm using the smooth data function after I have created the tall array
Marcel Mabson
Marcel Mabson on 21 Mar 2018
Below is the gather command I use when I call "smoothdata" gather(smoothdata(tallarray,'sgolay',80))

Sign in to comment.

Answers (1)

Chris Turnes
Chris Turnes on 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.

Categories

Find more on Tables in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!