How can i set color range in 2D plot?
13 ビュー (過去 30 日間)
古いコメントを表示
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
2016 年 5 月 21 日
z_cutoff = 50;
cmap = colormap();
cmap(1,:) = [1 1 1]; %white
colormap(cmap);
zmax = max(z(:));
caxis([z_cutoff, zmax]);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Color and Styling についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!