How does MATLAB know what toolboxes are installed?

13 views (last 30 days)
The toolboxes get installed underneath `$INSTALL_PATH/toolbox` but there seems to be more at play than just probing a set path on the file system. What goes on in the installer when a new toolbox is installed to an existing MATLAB installation?

Accepted Answer

Paul
Paul on 8 Aug 2014
I think I figured out my question, though perhaps I just didn't know what to ask. The `ver` command seems to magically know what toolboxes are installed, and when I looked, it was scanning the MATLAB search path to figure out the names and versions of the toolboxes which are installed.
At that point, all I needed to know is how the global MATLAB search path is initialized. The answer seems to be an automatically-generated file located at `$INSTALL_ROOT/toolbox/local/pathdef.m`. It contains a list of hard-coded search paths that I think are only updated at install time.
I'm not sure what the MATLAB installer uses to regenerate this file, so if for some reason you are not depending on the MATLAB installer to do this, you will have to devise some alternate means (unless someone else knows better). Though, I do see in `$INSTALL_ROOT/toolbox/local/path` a bunch of simple *.phl text files which appear to have relative paths to all the installed toolboxes, so perhaps that would be of aid.

More Answers (2)

Yu Jiang
Yu Jiang on 7 Aug 2014
Type ver (See Documentation) in the command window and see if you have the toolbox in the list.
  1 Comment
Paul
Paul on 8 Aug 2014
Thanks, I do know about the `ver` command and it's how I've been verifying that MATLAB sees a toolbox. I've dug through the source code of it, and it seems like it works by scanning the toolboxes on the MATLAB path. So, I guess the question then becomes, how does MATLAB bootstrap the paths?

Sign in to comment.


Image Analyst
Image Analyst on 8 Aug 2014
Actually apparently it's not much more than putting all your files in a folder and adding that folder to the search path. Here's the official Mathworks Answer: http://www.mathworks.com/matlabcentral/answers/91381-how-do-i-create-my-own-matlab-toolbox-and-a-list-of-its-contents
Your accepted answer of "it uses ver to figure out what toolboxes are installed" is not really accurate. Sure, it will tell you what toolboxes are installed, but even if you never ever call ver , MATLAB will still figure out what toolboxes are installed because it will find toolbox functions you call by traversing the search path. ver is not required.
  1 Comment
Andreas Goser
Andreas Goser on 8 Aug 2014
In addition, you may want to distinguish between installed and licensed products. The can be important in situations where the IT departments installs efficiently all purchased products for let's say 1000 users, but they are not all licensed for all products, but by persor or department. Check out the 'license' command.

Sign in to comment.

Categories

Find more on Introduction to Installation and Licensing in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!