Combine multiple .cvt files
4 次查看(过去 30 天)
显示 更早的评论
I have generated multiple .cvt files for coverage .
Currently I am able to merge them together using Coverage Result browser as specified by
How do I combine them using cvload or by command line
1 个评论
Pat Canny
2019-8-27
What are you looking to do with the combined coverage results? Are you looking to generate a report?
采纳的回答
Jalaj Gambhir
2019-8-26
Hi,
1 个评论
Pat Canny
2019-8-27
This uses the cvhtml command, which generates a report. Coverage results (for the same model) can be combined using the + operator.
covdata1 = cvsim(test1);
covdata2 = cvsim(test2);
cvhtml('cumulative_report', covdata1 + covdata2);
更多回答(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!