Colormap with both positive and negative values

130 次查看(过去 30 天)
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

类别

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