replace entire mdl file from app designer
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Bhisma Adhikari
il 27 Gen 2020
Commentato: Bhisma Adhikari
il 31 Gen 2020
My Simulink project (saved as mymodel.mdl) is opened in the Simulink window. I need to replace mymodel.mdl's entire content with the content from some other mdl file when I click a button in an app designed in app-designer (saved as myapp.mlapp). How do I do this?
0 Commenti
Risposta accettata
Ganesh Regoti
il 31 Gen 2020
Hi,
You can copy the contents from one Simulink model to another through appdesigner using subsystem commands. Here is the link you can refer to
Here is the small example to copy contents from one model to a subsystem of other model.
open_system('vdp');
new_system('new_model_with_vdp')
open_system('new_model_with_vdp');
add_block('built-in/Subsystem', 'new_model_with_vdp/vdp_subsystem')
Simulink.BlockDiagram.copyContentsToSubsystem...
('vdp', 'new_model_with_vdp/vdp_subsystem')
Hope this helps!
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Create Large-Scale Model Components in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!