Problem with setting a model parameter for Design Verifier
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Deepak
2017-11-9
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 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Model Compatibility 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!