getSimulinkFunctionNamesImpl
Register Simulink function names used in your System object
Syntax
names = getSimulinkFunctionNamesImpl(obj)
Description
specifies the Simulink® function names
= getSimulinkFunctionNamesImpl(obj
)names
used in the System object™
obj
.
If you use a Simulink function in your System object, you can only call a Simulink function from the stepImpl
, updateImpl
, or
outputImpl
method.
Run-Time Details
getSimulinkFunctionNamesImpl
is invoked by the MATLAB System during model compilation to obtain the list of Simulink functions
being called from the System object. Simulink uses this information to resolve the function names to a Simulink function
declared in a Simulink Function block. If
getSimulinkFunctionNamesImpl
does not return the name of a function being
called in the System object methods, Simulink attempts to resolve the function to a function
on the MATLAB path.
Method Authoring Tips
You must set Access = protected
for this method.
Input Arguments
Output Arguments
Examples
Call Simulink Functions from a MATLAB System Block
Version History
Introduced in R2019a