Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Input timetables must contain unique row times when synchronizing using 'linear'

조회 수: 1 (최근 30일)
Sangani Prithvi
Sangani Prithvi 2021년 8월 25일
마감: Rena Berman 2021년 9월 23일
I tried to run this synchronous function but, its showing an error something like this
"Input timetables must contain unique row times when synchronizing using 'linear'
T = readtable('ctm.xlsx');
head(T);
T.Time = days(T.Time);
T.Time.Format = "hh:mm:ss.SSS";
TT = table2timetable(T,'RowTimes','Time');
head(TT);
D = readtable('DIC.xlsx');
D.Time = days(D.Time);
D.Time.Format = "hh:mm:ss.SSS";
DD = table2timetable(D,'RowTimes','Time');
data = synchronize(TT,DD,"secondly","linear");

답변 (0개)

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by