How can i set color range in 2D plot?

I am getting 2D plot by using imagesc(..,z) command but here i need white color for lower value of Z(z is a 2*2 matrix) means if my z_max 1000, then below 50 i want to get white color. How can i do this?

답변 (1개)

Walter Roberson
Walter Roberson 2016년 5월 21일

0 개 추천

z_cutoff = 50;
cmap = colormap();
cmap(1,:) = [1 1 1]; %white
colormap(cmap);
zmax = max(z(:));
caxis([z_cutoff, zmax]);

카테고리

도움말 센터File Exchange에서 Color and Styling에 대해 자세히 알아보기

태그

질문:

2016년 5월 21일

답변:

2016년 5월 21일

Community Treasure Hunt

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

Start Hunting!

Translated by