Skip to content
Snippets Groups Projects
Verified Commit c553a14b authored by leprob001's avatar leprob001
Browse files

fix: Warning, Colon operands must be real scalars

parent e0658004
No related branches found
No related tags found
Loading
...@@ -9,7 +9,7 @@ filePath = fullfile(filePath, '..', '..', '..'); ...@@ -9,7 +9,7 @@ filePath = fullfile(filePath, '..', '..', '..');
trackingMethods = dir(fullfile(filePath, 'plugins', 'tracking', '*.m')); trackingMethods = dir(fullfile(filePath, 'plugins', 'tracking', '*.m'));
plugins = {}; plugins = {};
for oTrackingMethods = 1:size(trackingMethods) for oTrackingMethods = 1:length(trackingMethods)
if (trackingMethods(oTrackingMethods).isdir) if (trackingMethods(oTrackingMethods).isdir)
continue; continue;
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment