Combine multiple .cvt files
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hariom Singh
le 21 Août 2019
Commenté : Pat Canny
le 27 Août 2019
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 commentaire
Pat Canny
le 27 Août 2019
What are you looking to do with the combined coverage results? Are you looking to generate a report?
Réponse acceptée
Jalaj Gambhir
le 26 Août 2019
Hi,
1 commentaire
Pat Canny
le 27 Août 2019
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);
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Collect Coverage for Models dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!