Colormap with both positive and negative values

조회 수: 130 (최근 30일)
Anders
Anders 2013년 7월 7일
댓글: Walter Roberson 2017년 11월 9일
Hi all,
I have a very simple issue, but the solution has been escaping me nonetheless.
I have a big matrix of correlations: some are negative and some are positive. I would like to plot them with a red-green colormap (like the "colormap(redgreencmap)" for "imagesc"). In this map, a correlation of -1 should be bright red, a correlation of +1 bright green and a correlation of close to zero black.
However, it seems like MATLAB can only handle matrices of values between [0,1] for colormap plotting.
This should be pretty simple, but I cannot figure out the solution. Does anyone have any suggestions?
Thanks a lot,
Anders

채택된 답변

Image Analyst
Image Analyst 2013년 7월 7일
편집: Image Analyst 2013년 7월 8일
Try this:
% Create sample data:
correlations = peaks(300);
minValue = min(correlations(:));
maxValue = max(correlations(:));
% Scale the data to between -1 and +1.
correlations = (correlations-minValue) * 2 / (maxValue - minValue) - 1;
% Display - will use some weird color map to start with.
imagesc(correlations);
colorbar
% Create colormap that is green for negative, red for positive,
% and a chunk inthe middle that is black.
greenColorMap = [zeros(1, 132), linspace(0, 1, 124)];
redColorMap = [linspace(1, 0, 124), zeros(1, 132)];
colorMap = [redColorMap; greenColorMap; zeros(1, 256)]';
% Apply the colormap.
colormap(colorMap);
  댓글 수: 3
Alexandria
Alexandria 2014년 8월 20일
How would you go about changing the color from red/black/green, to say blue/black/yellow?
Nicolás Casaballe
Nicolás Casaballe 2016년 3월 14일
If you are still after this, you can modify the line that defines the colorMap matrix. Its columns represent the RGB ratios of the colors that are later used to represent the image values.
Without changing too much of the code above (but the names are going to be quite misleading), the line
colorMap = [redColorMap; redColorMap; greenColorMap]'; % Actually not red and green
would build a blue/black/yellow colormap of sorts. Choosing better names is advisable (for instance redCol, greenCol and blueCol to make the columns).

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Walter Roberson
Walter Roberson 2013년 7월 7일
The colormap should always be the RGB values to use, not the data values that are to be mapped into RGB values.
Create your colormap with bright red in the lower-numbered rows, black in the middle rows, and bright green in the last rows, and then imagesc() your data that is in the range -1 to +1
  댓글 수: 2
Jason McCune-Sanders
Jason McCune-Sanders 2017년 11월 9일
How would one easily change the shading of the map, i.e. add more colors or reduce the black zone in the middle? Thanks!

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 White에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by