Converting a table to a timetable
조회 수: 20 (최근 30일)
이전 댓글 표시
Hello there I have a table with time in seconds and acclerometer data in the x,y, and z directions. I am trying to convert my table into a time table to perforom analysis but I get an error saying "table2timetable Input table must contain datetime or duration vector for row times", Any suggestions on hiw to fix this or turn my "Time" variable in my table into a datetime or duration vector?
Thank you so much!
댓글 수: 0
답변 (1개)
Voss
2024년 3월 15일
Here's an example:
% a table
T = table([1;2;3],[4;5;6],'VariableNames',{'Time','x'})
% Time column is not duration or datetime
class(T.Time)
% try to convert T into a timetable
try
T = table2timetable(T) % error
catch e
disp(sprintf('Error: %s',e.message))
end
% convert T.Time to durations in seconds
T.Time = seconds(T.Time)
% now Time is duration
class(T.Time)
% and T can be converted into a timetable
T = table2timetable(T)
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Type Conversion에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!