comment out many SubSystems in my Model in Simulink using for loop.
2 views (last 30 days)
Show older comments
I have 10 subsystems in one system, and i want to comment out 3 of them using a Matlab code.
instead of
set_param ('System/subsystem1','commented','on')
set_param ('System/subsystem2','commented','on')
set_param ('System/subsystem3','commented','on')
I want to do somthing like this :
for i=1 : 3
set_param ('System/subsystem(i)','commented','on')
end
The Problem is i can't use a Variable in this expression 'System/subsystem(i)'
0 Comments
Accepted Answer
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!