How to use timetable function to insert it into data cleaner app ?
古いコメントを表示
Hi all,
I would like to clean my data by using a cleaner data app, but I cannot put my data directly which cannot read it because it's not in the timetable. Also, I used the Timetable function but needed to insert the time step. how can I fix this I f I have only the signal vector, please?
I will attach the data and the code for timetable function

load('a.mat')
b= timetable(a);
回答 (1 件)
load(websave('a.mat','https://www.mathworks.com/matlabcentral/answers/uploaded_files/1178268/a.mat'))
Fs=1; % assume 1 Hz; set at whatever is your sample rate
ttA=timetable(a,'SampleRate',Fs);
head(ttA)
カテゴリ
ヘルプ センター および File Exchange で Timetables についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!