When is the 'ModelReferenceVersionMismatchMessage' Simulink model parameter editable?
조회 수: 3 (최근 30일)
이전 댓글 표시

I would like to disable the "ModelReferenceVersionMismatchMessage" parameter, but when I go to the configuration parameters, it's greyed-out and I can't modify it. When I try to edit it from the command line, I also receive errors:

The documentation page for this parameter doesn't give any hints as to when it is possible to actually edit it. How can I edit it?
댓글 수: 0
채택된 답변
Fangjun Jiang
2020년 4월 9일
Try this
model='sldemo_mdlref_basic';
open_system(model);
get_param(model,'ModelReferenceVersionMismatchMessage')
set_param(model,'ModelReferenceVersionMismatchMessage','warning')
set_param(model,'ModelReferenceVersionMismatchMessage','none')
댓글 수: 3
Fangjun Jiang
2020년 4월 20일
Yes. In the .tlc file, you can disable certain configuration parameters. Open the .tlc file to see if you can find the source.
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!