Main Content

slreportgen.utils.isModelReferenceBlock

Check if object is Model block

Description

example

tf = slreportgen.utils.isModelReferenceBlock(obj) tests whether the input obj is a Model block.

Examples

Check If Object Is a Model Block

Run the following command to access the supporting files used in this example.

openExample('rptgenext/SimulinkReportGeneratorFilesExample');
load_system('slrgex_sf_car')
tf = slreportgen.utils.isModelReferenceBlock('slrgex_sf_car/Engine')
tf =

  logical

   0

In this case, the Engine subsystem in the slrgex_sf_car model is not a Model block.

Input Arguments

collapse all

Object to check for being a Model block, specified as a string or character array of the Simulink® object path or handle.

Output Arguments

collapse all

Whether input is a Model block, returned as 1 (true) if the input is a Model block. Otherwise, it returns 0 (false).

Version History

Introduced in R2018b