How to make a a certain range with different color in colorbar

조회 수: 17 (최근 30일)
I created a a contour plot and I would like to make the range between -50 and 0 different than the range 0 and 50 as below. Anway to help please
[X,Y] = meshgrid(10:5:80,0:1:20);
Z = f([X(:), Y(:)]);
Z1 = reshape(Z,[21,15]);
figure
contour(X,Y,Z1,15000)
colormap hsv
colorbar
xlabel('\gamma (%)')
ylabel('\lambda (%)')
zlabel('m^{*}_{NPV} ($B)')

채택된 답변

Sudheer Bhimireddy
Sudheer Bhimireddy 2020년 8월 8일
  댓글 수: 8
Sudheer Bhimireddy
Sudheer Bhimireddy 2020년 8월 9일
First, your cmap array will be of size Nx3.
If I understand you correctly, you want to show the variation between 0 and 50, but not from 50 to 300.
If you have the indices for 0 and 50, you can edit the cmap array between the corresponding indices to show the variation and then can have same color for thereafter. Also know, that sometimes limiting the coloraxis (caxis([cmin cmax])) could be useful. If you want anyvalue after 50 to have the same color then caxis([min(z) 50]) will do the trick.
For Option 1, colormapeditor is a gui based method, so it is purely manual.
Yaser Khojah
Yaser Khojah 2020년 8월 9일
Thanks Sudheer, I want exactly what I have with additional variation between 0 and 50. The range is very small which I’m struggling to present.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Walter Roberson
Walter Roberson 2020년 8월 9일
The above function requires that the positions be defined in relative terms, 0 to 1, rather than in absolute terms. You would have to decide ahead of time what your caxis() is going to be, and use proportional positions through that range,
relative_position = (data_x - min_to_map)./(max_to_map - min_to_map)
  댓글 수: 8
Yaser Khojah
Yaser Khojah 2020년 8월 12일
Oh I’m sorry I just added the xsl for you since I though I can’t upload the mat file.
Walter Roberson
Walter Roberson 2020년 8월 12일
levels = [-700 -600 -500 -400 -300 -200 -100 -50 -40 -30 -20 -10 0 10 20 30 40 50 100 200 300];
[a,b] = contourf(X, Y, Z1, levels);
This will not in itself create new colormap entries for the various levels, but it will outline them more clearly.
To create new colormap entries, you have to follow the strategy I outlined above, of creating a colormap with replicated slots.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Colormaps에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by