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 NeuromorphicControlToolbox namespace.

MATLAB® Interface#

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

NeuromorphicControlToolbox.{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 NeuromorphicControlToolbox.{subnamespace}.{func} % Import only the specified function
import NeuromorphicControlToolbox.{subnamespace}.*      % Import all functions in the subnamespace
import NeuromorphicControlToolbox.*                     % Import all subnamespaces