Package: ModelAdvisor
Open Model Advisor Command-Line Summary report
ModelAdvisor.summaryReport(SysResultObjArray)
ModelAdvisor.summaryReport(
opens the
Model Advisor Command-Line Summary report in a web browser. SysResultObjArray
)SysResultObjArray
is a cell array of ModelAdvisor.SystemResult
objects
returned by ModelAdvisor.run
.
|
Cell array of |
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)