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

조회 수: 4 (최근 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