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

2 次查看(过去 30 天)
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.

采纳的回答

Fangjun Jiang
Fangjun Jiang 2023-1-24
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')

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Run Model Advisor Checks 的更多信息

标签

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by