Can the descriptions of all Model Advisor checks for R2021a be exported to Matlab workspace?

2 views (last 30 days)
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.

Accepted Answer

Fangjun Jiang
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)

Categories

Find more on Run Model Advisor Checks in Help Center and File Exchange

Products


Release

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!