Interface#

Installing the toolbox will not make any addition to the MATLAB® window. The changes will be a new library in the Simulink® Library Browser and new functions in MATLAB® under the NeuroCont namespace.

MATLAB® Interface#

The MATLAB® additions of the toolbox are a set of functions under the NeuroCont namespace. They can be accessed directly using the full path of the function like so :

NeuroCont.{subnamespace}.{func}({func_args})

To avoid writing such long function calls, the import statement allows to specify the full namespace once then either only call the function by name or by only using a subnamespace depending on the import statement.

import NeuroCont.{subnamespace}.{func} % Import only the specified function
import NeuroCont.{subnamespace}.*      % Import all functions in the subnamespace
import NeuroCont.*                     % Import all subnamespaces