comment out many SubSystems in my Model in Simulink using for loop.
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)'
Accepted Answer
More Answers (0)
Categories
Find more on Simulink in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!