how to use color sets in maps by defining intervals in matlab (for example: lower than 10 , between 10 and 50 , between 50 and 200, between 200 and 1000, greater than 1000). thanks
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
mina massoud
am 10 Apr. 2019
Beantwortet: Kelly Kearney
am 10 Apr. 2019
how to use color sets in maps by defining intervals in matlab (for example: lower than 10 , between 10 and 50 , between 50 and 200, between 200 and 1000, greater than 1000). thanks
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 10 Apr. 2019
Maybe like
cMap = zeros(1000, 3);
cMap(1:9, :) = [.4, .7, .3]; % Whatever color you want.
cMap(10:50, :) = [.8, .1, .6]; % Whatever color you want.
cMap(50:200, :) = [.6, .37, .8]; % Whatever color you want.
cMap(200:end, :) = [15, .2, .58]; % Whatever color you want.
colormap(cMap);
colorbar;
2 Kommentare
Image Analyst
am 10 Apr. 2019
Try this:
C = [0 2 4 6; 8 10 12 14; 16 18 20 21]
imagesc(C)
colorbar
% and i need to put intervals for the value of the matrix
% like from [0:4] is a red color
% [5:10] is blue color
% [11:20] is green color
% maggior than 20 is black
cmap = zeros(22, 3);
cmap(1:5, :) = repmat([1, 0, 0], 5, 1); % 0 to 4 is red
cmap(6:11, :) = repmat([0, 0, 1], 6, 1); % 5 to 10 is blue.
cmap(12:21, :) = repmat([0, 1, 0], 10, 1); % 11 to 20 is green.
cmap(22, :) = [0, 0, 0]; % more than 20 is black.
colormap(cmap);
colorbar;
impixelinfo; % Let user mouse around and see image values.
![0000 Screenshot.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/213036/0000%20Screenshot.png)
Weitere Antworten (1)
Kelly Kearney
am 10 Apr. 2019
What are you trying to do with those color intervals? Create a colorbar? Or perhaps a contour plot? If the latter, you can try using my contourfcmap function; it's designed to allow precise color level definition like this.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Orange finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!