TLC equivalent of find_system(...)
Mostrar comentarios más antiguos
For Target Development/ code generation, I need to edit the ert_file_process.tlc file.
In this file I need to write a few lines to get some of the existing parameters of subsystem blocks that I have developed and user is using in the model.
In other words, I want to know which tlc directives I should use to find data (mask parameters) of the present subsystem blocks in my model. In MATLAB (.m) language, I would use the following lines to do so. I want to know the equivalent .tlc code for these:
Subsystem_blocks = find_system(bdroot,'BlockType','SubSystem');
for j=1:length(Subsystem_blocks)
p = Simulink.Mask.get(Subsystem_blocks{j});
param2 = p.getParameter('my_mask_param2');
end
I would like to use the results of param2 (the mask parameters of the existing subsystem blocks that I've developed) in the tlc file...
Thanks in advance!
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Deployment, Integration, and Supported Hardware en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!