BlockImporter
Import
import a Simulink(R) system
Calling Sequence
Parameters
Options
Description
Examples
Import( model, subsys, opts )
model
-
(optional) string; Simulink® model
subsys
(optional) string; Simulink® subsystem
opts
(optional) equation(s) of the form option = value; specify options for the Import command
init = string
Specifies a Matlab initialization command to execute. The default is to not execute an initialization command.
inplace = truefalse
Specifies that the Simulink® model is to be modified in place (in MATLAB®) to convert it to a Maple record. The default is false.
path = string
Specifies the directory from which model is read. This is also used as the directory to search when no model is specified. The default is the current directory (currentdir).
The Import command converts a Simulink® model to a Maple record. The format of the record is described in BlockImporter[datastructure].
The optional model parameter is the base name of the Simulink® file. It should not include the extension (.mdl) of the file. If the model parameter is not provided, then a Simulink® dialog box opens that prompts the user to select a model file and subsystem.
The optional subsys parameter is the name of a subsystem in the Simulink® model. If provided, then just that subsystem is imported. The name of a subsystem includes the model name, separated by a forward slash. For example, to import a subsystem named mysubsystem from a model named mymodel, the value of subsys is mymodel/mysubsystem. The subsys parameter is only used if the model parameter is specified.
with⁡BlockImporter:
Import the model.
sys≔Import⁡example,path=BlockImporter:-DataDirectory⁡,init=example_init,inplace=true
Print out the summary of the imported data structure.
PrintSummary⁡sys
See Also
BlockImporter[datastructure]
BlockImporter[PrintSummary]
BlockImporter[SimplifyModel]
Download Help Document