added function for filtering, small minor fixes

This commit is contained in:
v.chau 2025-07-08 19:11:17 +02:00
parent 8a9eac3520
commit d2a2c434f5
2 changed files with 1 additions and 1 deletions

BIN
app.mlapp

Binary file not shown.

View File

@ -21,7 +21,7 @@ function [data] = vector2timetable(data_path, varargin)
catch
try
for i=1:length(tt)
sortrows(tt{i});
tt{i} = sortrows(tt{i});
end
data = synchronize(tt{:},"union","nearest");
catch