Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Can I see the code part that corresponds to various app elements?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I am wondering if there is a way to find the specific code part that corresponds to various elements on an app user interface. For instance, let's assume we have an app with 4 image planes (using subplot(2,2,1:4)) some sliders that move in accordance to mouse wheel etc. How can I find the exact code parts of those elements? The code that corresponds to each one of the 4 planes and the code that corresponds to the slider that changes with mouse scroll.
3 Kommentare
Adam
am 16 Mai 2018
UI components are class properties. Just search for them in the code and find the callbacks. Things that you create using subplot will exist where you create them. It is entirely up to you where they spread to from there. I don't really understand the question.
Antworten (0)
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!