How to make a common color bar?

1 view (last 30 days)
I want to make a common color bar for 4 subplots. Any suggestions would be appreciated.EVWS_matlab.png

Accepted Answer

Bjorn Gustavsson
Bjorn Gustavsson on 2 Oct 2019
This is how I do this neatly:
subplot(1,1,1)
cbh = colorbar_labeled('');
subplot(2,2,3)
plot([0 2])
subplot(2,2,2)
imagesc(peaks(123))
colorbar_labeled is an old function someone gifted me. This works very conveniently.
HTH

More Answers (0)

Categories

Find more on Line Plots 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!