How to save summaryReport generated by Model Advisor programmatically ?
4 次查看(过去 30 天)
显示 更早的评论
- I would like to save(programmatically) the summaryReport generated by Model Advisor after Model Checks
- Would be nice if two such summary Report can be clubbed together. Since after the new check is run with different configuration the old link for the summary report says 'Link out of date'
0 个评论
采纳的回答
Smit
2023-2-10
Hi,
I understand you want to know if there is a programmatic way to save summary report generated by Model Advisor, and if there is a way to access previously generated summary reports.
You can run the Model Advisor with the “ModelAdvisor.run” function. Model Advisor saves the report in a folder called “slprj”.
An example of “ModelAdvisor.run” is as follows: -
results = ModelAdvisor.run(["vdp"], ["mathworks.design.OptimizationSettings"]);
% View saved report
ModelAdvisor.summaryReport(results)
To avoid overwriting previously generated reports, one way could be to save new reports in another location using the “ReportPath” property of the “ModelAdvisor.run” function.
An example of this is as follows
results = ModelAdvisor.run(["vdp"], ...
["mathworks.design.OptimizationSettings"], "ReportPath", "destination/path");
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Run Model Advisor Checks 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!