How to find out if the Simulink Verification and Validation toolbox is installed?
조회 수: 11 (최근 30일)
이전 댓글 표시
Hi all,
is there a simple way of finding out programmatically if the "Simulink Verification and Validation" toolbox is installed? I tried to check the output of the "ver" command for the occurence of that string but this seems to be not very elegant.
Thank you very much!
Ralf
댓글 수: 0
채택된 답변
Thomas Koelen
2015년 5월 8일
v = ver;
any(strcmp('Simulink Verification and Validation', {v.Name}))
This will return
1
if the toolbox is installed and:
0
If it's not.
Thomas
댓글 수: 2
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Verification, Validation, and Test에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!