coder.buildstatus.open - Open Build Status window - MATLAB (original) (raw)
Main Content
Syntax
Description
coder.buildstatus.open([model](#mw%5F1fff49c3-d7a2-4298-9b85-e940d515619c))
opens the Build Status window for model
.
The Build Status window supports parallel builds of referenced model hierarchies. Do not use the Build Status window for serial builds.
If the current working folder is the model build folder and the folder contains information from a previous parallel build, opening the Build Status window displays the previous build information. When you start a model parallel build, the current build information replaces the previous build information in the window.
coder.buildstatus.open([model](#mw%5F1fff49c3-d7a2-4298-9b85-e940d515619c),[systemTarget](#mw%5F1fc7966e-00f5-42aa-a572-249e01366495))
opens the Build Status window for model
and displays themodel
tab. The available tabs are Simulation Targets and Code Generation Targets
Examples
After generating code for model 'ParallelBuildA1'
, open the Build Status window for the model.
coder.buildstatus.open('ParallelBuildA1')
Open the Build Status window for the model 'ParallelBuildA1'
and display the Simulation Targets tab.
coder.buildstatus.open('ParallelBuildA1','sim')
Input Arguments
Model name specified as a character vector or a string scalar
Example: 'ParallelBuildA1'
Data Types: char
| string
System targets tab name specified as a character vector or string scalar,sim
for Simulation Targets andrtw
for Code Generation Targets. When build information is available for a system target from a previous build, the_systemTarget
_ argument directs the Build Status dialog box to display the tab for the system target. If this optional argument is omitted, when build information is available, the dialog box opens both the Simulation Targets tab and Code Generation Targets tab. If build information for a target is not available, the dialog box does not open the corresponding system targets tab.
Example: 'rtw'
Data Types: char
| string
Version History
Introduced in R2018a