I have the following sensor sample data:
Time(milliseconds) Data
------------------ -------------------
0 0.30865225195884705
60 0.14355185627937317
100 -0.16846869885921478
156 -0.2458019256591797
198 -0.19664153456687927
258 0.27148059010505676
305 -0.16949564218521118
350 -0.227480947971344
397 0.23532353341579437
458 0.20740140974521637
Which means at time 0
I have the value 0.30865225195884705
and at time 60
I have the value 0.14355185627937317
and so on.
As it is observed, data are not equally spaced which means I have data at different time stamps. I need this because I will apply Fast Fourier Transform to this signals.
Are there any methods or implementations so that I can create equally spaced data from my sensor data? (using MATLAB)