How to create a colormap attributing specific colour to each element?

6 次查看(过去 30 天)
Hi everyone!
I have an array A,
A = [ 1 2 3 4
2 2 3 1
1 1 4 2];
I want to create a colormap but each element needs to be colored in a specific colour, for example, 1 is blue, 2 is black, 3 is green and 4 is yellow.
Thanks

采纳的回答

Matt Gaidica
Matt Gaidica 2019-1-26
Given these data, I would do this.
A = [ 1 2 3 4
2 2 3 1
1 1 4 2];
cmap = jet(max(A(:)));
figure;
imagesc(A);
colormap(cmap);
colorbar;
colormap.png

更多回答(1 个)

Stephen23
Stephen23 2019-1-27
编辑:Stephen23 2019-1-27
A = [1,2,3,4;2,2,3,1;1,1,4,2];
map = [0,0,1;0,0,0;0,1,0;1,1,0]; % [blue;black;green;yellow]
imagesc(A,[1,4]) % better to set the color limits.
colormap(map)

类别

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