Can the descriptions of all Model Advisor checks for R2021a be exported to Matlab workspace?
4 views (last 30 days)
Show older comments
James Pflumm
on 24 Jan 2023
Commented: James Pflumm
on 25 Jan 2023
Need: Create a list of all Model Advisor checks available in R2021a including the descriptions for these checks.
In other words - For all the available checks organized in the drop down folder menu in Model Advisor below. I want to print each check's name and description (highlighted in yellow in screen capture) to the Matlab workspace, or export to a spreadsheet.
The aim is to avoid having to manually copy and paste each check + description into a spreadsheet.

0 Comments
Accepted Answer
Fangjun Jiang
on 24 Jan 2023
something like this:
Model='f14';
open(Model);
ma = Simulink.ModelAdvisor.getModelAdvisor(Model);
Checks=ma.CheckCellArray;
Description=cell(size(Checks));
for k=1:numel(Checks)
Description{k}=Checks{k}.Description;
end
xlswrite('CheckDescription',Description')
More Answers (0)
See Also
Categories
Find more on Run Model Advisor Checks in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!