TLC equivalent of find_system(...)
이전 댓글 표시
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!
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Deployment, Integration, and Supported Hardware에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!