MATLAB 2022a, Automatic model Coverage with model coloring and cumulative report generation is not happening.
6 次查看(过去 30 天)
显示 更早的评论
In previous MATLAB versions, we used to have following options (in configurable coverage analysis):
Latest version 2022a doesn’t have any of the highlighted options, which is creating difficulties while analyzing cumulative coverage.
The requirement is to get model highlighted with coloring after we simulate the plant model, Result explorer should pop-up and cumulative report(with all the runs included) should be generated automatically
Request you to please help us with this issue.
0 个评论
采纳的回答
Pat Canny
2022-9-28
Those parameters in the coverage settings UI were deprecated some time ago to bring Simulink Coverage simulation "in line" with other simulation-based workflows. Which MATLAB release were you using prior to R2022a?
Are you not seeing the coverage highlighting after simulation? That should be enabled by default in R2022a. There is also the cvmodelview function to show highlighting.
You can generate a report automatically using the cvsim and cvhtml functions. Here's a code snippet from the cvsim documentation:
%openExample('slcoverage/RecordCoverageDataUsingCvsimExample')
modelName = 'slvnvdemo_cv_small_controller';
load_system(modelName)
testObj = cvtest(modelName);
testObj.settings.decision = 1;
paramStruct.AbsTol = '1e-5';
paramStruct.SaveState = 'on';
paramStruct.StateSaveName = 'xoutNew';
paramStruct.SaveOutput = 'on';
paramStruct.OutputSaveName = 'youtNew';
[covData,simOut] = cvsim(testObj,paramStruct);
cvmodelview(covData) % I added this line. It will display the model with coverage result highlighting.
cvhtml('CoverageReport.html',covData,'-sRT=0');
2 个评论
Pat Canny
2022-9-28
Thanks - just a note of clarification: the cvhmtl command can generate a report of aggregated coverage as well as "individual" (single simulation) coverage. It just needs a valid coverage data object.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Analyze Coverage and View Results 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!