addShutdownFile

(Not recommended) Add shutdown file to project

simulinkproject is not recommended. Use currentProject or openProject instead. For more information, see .

Description

example

addShutdownFile(proj, file) adds a shutdown file to the project proj. When you close the project, it runs the shutdown file automatically. Use the shutdown list to specify executable MATLAB® code to run as the project shuts down.

Examples

collapse all

Open the airframe project and create a project object.

sldemo_slproject_airframe
proj = simulinkproject;

Specify executable MATLAB code to run as the project shuts down.

     filepath = fullfile('utilities', 'rebuild_s_functions.m');

Automatically run the file when the project closes, by making it a shutdown file.

addShutdownFile(project, filepath);

Input Arguments

collapse all

Project, specified as a project object. Use simulinkproject to create a project object to manipulate a project at the command line.

Path of the MATLAB file to add relative to the project root folder, including the file extension, specified as a character vector. The file must be within the root folder.

Example: ‘utilities/myscript.m’

Compatibility Considerations

expand all

Not recommended starting in R2019a

Introduced in R2017b