Problem with setting a model parameter for Design Verifier
23 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Sven-Eric Krüger
le 27 Avr 2017
Réponse apportée : Deepak
le 9 Nov 2017
I generate a model programatically and want to set parameters regarding the Design Verifier.
new_system('harness')
...
set_param('harness', 'DVDetectOutOfBounds', 'on');
This produces the following error:
Error using PerformCheck (line 16)
block_diagram does not have a parameter named 'DVDetectOutOfBounds'
My question in detail is now: How do I programatically attach the options or parameters of the Design Verifier to a model?
0 commentaires
Réponse acceptée
Deepak
le 9 Nov 2017
The parameters related to Simulink Design Verifier can be changed programmatically using sldvoptions.
For example:
opts =sldvoptions;
opts.Mode = ‘DesignErrorDetection’;
opts.DetectOutOfBounds = 'on'
The following documentation page provides you more information about programming sldv parameters:
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Generate Tests 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!