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

1 回表示 (過去 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 Center および File ExchangeRun 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