How to find which toolboxes are required for compiled standalone app?
26 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Bruno Luong
am 31 Mai 2022
Bearbeitet: Stefanie Schwarz
am 22 Aug. 2024
My question is straightforward:
Is there away to check which toolbox are required after mcc command.
I can see the file requiredMCRProducts.txt produced by mcc as example contains the list of "Product IDs" like this
35000 35003 35010 35106
It does not speak to me much, is there any way to know what kind to toolbox/version behind those numbers?
Or is there anotherway to figure it out?
0 Kommentare
Akzeptierte Antwort
Wave
am 5 Jun. 2023
Verschoben: Stefanie Schwarz
am 22 Aug. 2024
pcmn = matlab.depfun.internal.ProductComponentModuleNavigator;
pcmn.productInfo(35000) % Insert your number here
0 Kommentare
Weitere Antworten (1)
Mario Malic
am 5 Jun. 2023
Hello,
Are you able to put your codes in a project? There is a Dependency Analyzer app which you can run and it tells you the required toolboxes.
1 Kommentar
Stefanie Schwarz
am 22 Aug. 2024
Bearbeitet: Stefanie Schwarz
am 22 Aug. 2024
Since R2023a, Dependency Analyzer also works for files that are not in a project. It can be opened from the MATLAB apps gallery.
However, MATLAB Runtime works with other products components compared to MATLAB Desktop. So the list in requiredMCRProducts.txt may be different from the "regular" required toolboxes.
Siehe auch
Kategorien
Mehr zu Standalone Applications 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!