hotfix for synchronisation problems
This commit is contained in:
parent
a7e363299e
commit
1c9612aca6
@ -14,7 +14,11 @@ function [data] = vector2timetable(data_path, varargin)
|
||||
"VariableNames",{fn{i}} ...
|
||||
);
|
||||
end
|
||||
data = synchronize(tt{:},"union","nearest");
|
||||
try
|
||||
data = synchronize(tt{:},"union","nearest");
|
||||
catch
|
||||
data = tt{:};
|
||||
end
|
||||
% union -> union of the row times
|
||||
% method -> fill gaps in output with nearest neighbor in the input timetable
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user