How to find out if the Simulink Verification and Validation toolbox is installed?
11 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposta accettata
Thomas Koelen
il 8 Mag 2015
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 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Verification, Validation, and Test in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!