How to set a value range for predefined colormap?

3 Ansichten (letzte 30 Tage)
Andreas Wagner
Andreas Wagner am 8 Okt. 2018
Bearbeitet: Stephen23 am 9 Okt. 2018
Hi!
I want to use a contourf plot with colormap winter. The result is that every plot shows the full color range even it shows just small values. If I want to show one colorbar for two plots with different values I have to set a fixed range of values. I would like to set like 0 is the lowest value (in 'winter' blue) and 20 (in 'winter' yellow) the highest. If one of the plots show maximum values of 5 there shouldn't be any yellow color.
Kind regards
Andreas

Antworten (1)

Stephen23
Stephen23 am 8 Okt. 2018
Set the caxis:
caxis([0,20])
Note that colormaps do NOT have values associated with them, they are simply a collection of colors in an array.
  2 Kommentare
Stephen23
Stephen23 am 9 Okt. 2018
Andreas Wagner's "Answer" moved here:
Thanks! I knew caxis before, but I used it in the wrong order. Now it works!
Kind regards
Stephen23
Stephen23 am 9 Okt. 2018
Bearbeitet: Stephen23 am 9 Okt. 2018
@Andreas Wagner: I hope that it helped.
Remember to accept the answer that helped you to resolve your question.

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by