I would like to colour all occurrences of a specific block in Simulink. For instance, I want all Scope
s to be yellow. How can I achieve this.
I recommend to create a library and have the blocks with the colours already set in it.
Alternatively you can use find_all
to identify all blocks and set_param(blockname,'BackgroundColor','green')
to change the coluor.