ModelAdvisor.summaryReport

Package: ModelAdvisor

Open Model Advisor Command-Line Summary report

Syntax

ModelAdvisor.summaryReport(SysResultObjArray)

Description

ModelAdvisor.summaryReport(SysResultObjArray) opens the Model Advisor Command-Line Summary report in a web browser. SysResultObjArray is a cell array of ModelAdvisor.SystemResult objects returned by ModelAdvisor.run.

Input Arguments

SysResultObjArray

Cell array of ModelAdvisor.SystemResult objects returned by ModelAdvisor.run.

Examples

Opens the Model Advisor Command-Line Summary report after running the Model Advisor:

% Identify Model Advisor configuration file.
% Create list of models to run.
fileName = 'slvnvdemo_mdladv_config.mat';
SysList={'sldemo_auto_climatecontrol/Heater Control',...
    'sldemo_auto_climatecontrol/AC Control'};

% Run the Model Advisor.
SysResultObjArray = ModelAdvisor.run(SysList,'Configuration',fileName);

% Open the Model Advisor Command-Line Summary report.
ModelAdvisor.summaryReport(SysResultObjArray)
Introduced in R2010b