In Simulink, is there a way to highlight a specific part of a circuit with a different coloured circuit lines
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Gokul Murali
il 19 Lug 2018
Risposto: Gokul Murali
il 20 Lug 2018
In Simulink, is there a way to highlight a specific part of a circuit with a different coloured circuit lines
0 Commenti
Risposta accettata
Christopher Wallace
il 19 Lug 2018
Yes, you can use the 'hilite_system' function.
If you want to highlight only pieces of the model you selected you would first need to find the handles for each block and line. This can be done by using 'find_system'.
Example code for highlighting a group of blocks and lines you've selected:
selectedBlocks = find_system(gcs, 'SearchDepth', 1, 'FindAll', 'on', 'Selected', 'on');
hilite_system(selectedBlocks);
Più risposte (1)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!