How do I prevent all my axes colormaps in a figure from being updated at once?
10 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Kristoffer Walker
am 31 Mai 2019
Kommentiert: Kristoffer Walker
am 31 Mai 2019
Folks,
I have a single GUI with several axes. When I set the current axes to axes 1, and I change the colormap with "colormap(gray)" for example, this changes the colorbars on the other axes to also be gray. My desired behavior is to control each axes colormap within my GUI indepdently. I tried the Matlab uploaded functions "freezeColors" and "unfreezeColors", but that does not seem to fix this.
Thank you,
Kris
2 Kommentare
Akzeptierte Antwort
Stephen23
am 31 Mai 2019
Bearbeitet: Stephen23
am 31 Mai 2019
According to the colormap documentation the syntax that you are using changes the colormap for the entire figure, which is inherited by any axes within that figure. The documentation also states that if you only want to change the colormap of one axes then you need to specify those axes:
axh = axes(...)
...
colormap(axh,...)
Tip: experienced MATLAB users recommend always using explicit graphics handles, as my example code shows, rather than unreliable and unpredictable gca, gcf, etc.
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Colormaps finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!