How do I check to see if a specific package is installed during runtime?
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Chandler Williams
am 27 Apr. 2017
Beantwortet: Walter Roberson
am 27 Apr. 2017
My personal computer has the Parallel Computing Toolbox, but my work computer does not. How can I check during runtime if the computer I am running a program on has that package installed? Thanks in advance!
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 27 Apr. 2017
There are two things you can check:
ver('distcomp') %this tells you whether it is _installed_
license('test','Distrib_Computing_Toolbox') %this tells you whether it is _licensed_
It is a pain that you have to know the exact magic names and that the names are different for the two facilities.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Introduction to Installation and Licensing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!