Accessing Simulink Model using M script

Hello All,
Problem : I want to get number of level present in MATLAB model ( hierarchy) throgh M script. Manually we can check in Model explorer.
and then from M script only I want to loop though at each level and get numbers of subsystem present at each level seperately. Can I do it in MATLAB ?
Please guide.
Thank you!!

답변 (1개)

Fangjun Jiang
Fangjun Jiang 2020년 7월 2일

0 개 추천

Something like this:
Model='MyModel';
open_system(Model);
Sys=find_system(Model,'BlockType','SubSystem');
for k=1:length(Sys)
SubSys=find_system(Sys{k},'SearchDepth',1,'BlockType','SubSystem','Parent',Sys{k});
end

카테고리

도움말 센터File Exchange에서 Using MATLAB Projects in Simulink에 대해 자세히 알아보기

제품

릴리스

R2019b

태그

질문:

2020년 7월 2일

답변:

2020년 7월 2일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by