How to resample table data from 1ms to 10ms

26 views (last 30 days)
Hello Everyone,
I have a data of table (118011x19) with 1ms sampling time. Now need to resample the complete table to 10ms.
Is it possible to do this is matlab.
Any leads would be aprreciated
Thanks in advance

Accepted Answer

Barry
Barry on 19 Aug 2020
Hi,
with the resample or the interpolation function
  2 Comments
joe bates
joe bates on 10 Mar 2023
Error using resample
Expected input number 1, X, to be one of these types:
double
Instead its type was table.
Error in signal.internal.resample.orientToNdim (line 40)
validateattributes(x,{'double'},{'nonempty','nonsparse'},'resample','X',1);
Error in resample (line 180)
[xIn, dimIn] = signal.internal.resample.orientToNdim (varargin{1}, Dim);
Error in Vibrations_ver1 (line 37)
VibPrmt_resampled = resample(VibPrmt,24,144);
joe bates
joe bates on 10 Mar 2023
I get an error trying to resample a table

Sign in to comment.

More Answers (0)

Categories

Find more on Tables in Help Center and File Exchange

Products


Release

R2019b

Community Treasure Hunt

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

Start Hunting!