Adds folders to Matlab's path temporarily. It is somehow similar to include
in other languages.
To use this package, add this folder to your path, and call include()
function. Instead you can copy the content of this package to your project.
Use run_include
if you need an executable.
include(method::String, [folders::Array{String}/Cell{Char}])
- method: can be
"all","all_exclude","specific","GUI_all","GUI_specific"
- folders (optional):
- if method is
"all_exclude"
: pass the folder names that should be excluded - if method is
"specific"
: pass the folder names that should be included
Folders specified in the 2nd argument can have a relative as well as absolute path.
Choose the method, and run the function.
include("all");
Pass a 2nd output to include/exclude specific folders if you chose "all_exclude" or "specificFolders"
include("specific", ["src", "examples"]); % or include("specific", {'src', 'examples'});
This is written as part of my Master's thesis and it is licensed under Apache V2, so cite this paper if you use it:
A. Yahyaabadi, P. Ferguson, ”An intelligent multi-vehicle drone testbed for space systems and remote sensing verification,” in Canadian Aeronautics and Space Institute (CASI) ASTRO, Canada, 2019
In case of changes, either make pull requests to this repository or state the changes.