Programmatically enable Generate report automatically after analysis in Simulink configuration parameters for Coverage
1 回表示 (過去 30 日間)
古いコメントを表示
What is the config set param name for Generate report automatically after analysis
I know for various other parameters shown below the names are as follows
config_set.Components(9).CovEnable = 'on';
config_set.Components(9).CovShowResultsExplorer= 'off';
config_set.Components(9).CovHTMLOptions = '-sVT=1';
config_set.Components(9).CovCumulativeReport= 'on';
config_set.Components(9).CovEnableCumulative= 'on';
I am unable to find the name for Generate report automatically after analysis.
Any help is much appreciated

0 件のコメント
回答 (1 件)
Kiran Felix Robert
2021 年 2 月 1 日
Hi Sai,
You can enable the Coverage Report generation with the following command,
set_param(modelName,'CovHtmlReporting','on');
To get the list of all commands use,
get_param(modelName,'ObjectParameters')
Try using the search bar in the model configurations dialog box to get the command-line name of any required property.
Kiran
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Collect Coverage for Models についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!