Is there any means to get the list of all required toolboxes to run a custom Simulink model without simulating it?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Dhanesh R
el 8 de Jul. de 2024
Comentada: Dhanesh R
el 2 de Dic. de 2024
This is my requirement. I would be receiving some Simulink model from some team. Prior to running it, is it possible to get the list of toolboxes that the model requires?
0 comentarios
Respuesta aceptada
surya venu
el 8 de Jul. de 2024
Hi,
There is a way to find all the toolbox dependencies with using "dependencies.toolboxDependencyAnalysis" function.
Here is an example code:
openExample("vdp.slx");
names = dependencies.toolboxDependencyAnalysis(bdroot)
For more information, check out the link below:
Hope it helps.
Más respuestas (0)
Ver también
Categorías
Más información sobre Verification, Validation, and Test en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!