How to Install additional Toolboxes in MATLAB (PC Version)

A Toolbox is a library of MATLAB functions. Examples are the Control Systems Toolbox, the Signal Processing Toolbox. The Student Edition of MATLAB includes Signals and Systems Toolbox and the Symbolic Toolbox. There are many user contributed matlab files that you can add to your MATLAB system to extend its capabilities (check the Mathworks Home Page)

Here I will explain how to install additional MATLAB Toolboxes (or collections of M-files) so that they can be accesses by your programs as regular matlab functions.

Here I will assume that MATLAB has been already installed in the default directories in the Hard disk C: and we want to install a toolbox, called MYTOOLS which consists of a set of M-files. First, we will copy these files into a directory of the MATLAB system and then add its path so that you can access these functions under MATLAB

Installing the Toolbox M-files

Extending MATLAB's path

matlabpath([...
'C:\MATLAB\toolbox\local',...
';C:\MATLAB\toolbox\matlab\datafun',...
matlabpath([...
'C:\MATLAB\toolbox\local',...
';C:\MATLAB\toolbox\MYTOOLS',... <------add this line
';C:\MATLAB\toolbox\matlab\datafun',...

Checking the installation

To verify that your installation is correct, open a new session of matlab and then type: help mytools. MATLAB should respond with a list of all the functions under this directory.


JC 9/17/96.