Skip to content
Permalink
f9a6ba412f
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
19 lines (14 sloc) 635 Bytes
%% Run the Toolbox Dependency Analysis
fileList = {};
moduleFilesStruct = dir('Modules');
moduleFiles = arrayfun(@(x) [x.folder '\' x.name],moduleFilesStruct,'UniformOutput',false);
mainFilesStruct = dir;
mainFiles = arrayfun(@(x) x.name, mainFilesStruct, 'UniformOutput',false);
for i = 1:length(moduleFiles)
if(endsWith(moduleFiles{i} ,'.m')); fileList{end+1} = moduleFiles{i}; end;
end
for i = 1:length(mainFiles)
if(endsWith(mainFiles{i} ,'.m')); fileList{end+1} = mainFiles{i}; end;
end
toolBoxDependencies = dependencies.toolboxDependencyAnalysis(fileList);
dependencies.toolboxDependencyAnalysis({'RESClassifier.m'})