Main Content

coder.report.open

Open existing HTML code generation report

Description

example

coder.report.open(model) opens a code generation report for the model. The build folder for the model must be present in the current working folder.

example

coder.report.open(subsystem) opens a code generation report for the subsystem. The build folder for the subsystem must be present in the current working folder.

Examples

collapse all

After generating code for CounterModel, open a code generation report for the model.

coder.report.open('CounterModel')

Open a code generation report for the subsystem ‘Amplifier’ in model ‘CounterModel’.

coder.report.open('CounterModel/Amplifier')

Input Arguments

collapse all

Model name specified as a character vector

Example: CounterModel

Data Types: char

Subsystem name specified as a character vector

Example: CounterModel/Amplifier

Data Types: char

Version History

Introduced in R2012a