How to map a vector to a colourmap ?

조회 수: 97 (최근 30일)
Harish Rajan
Harish Rajan 2020년 3월 24일
댓글: Harish Rajan 2020년 3월 30일
Hello,
I am trying to map a vector containing energy of modes of a dynamic system to a vector containing colour values so that when i plot this I want the markers to have the colour corresponding to their energy levels. For example the highest energy value will correspond to a Solid black colour and the next one a little less black then the others have grey and the least energy ones have white colour (thus making them invisible in the plot).
Best Regards
Harish
  댓글 수: 2
Adam
Adam 2020년 3월 24일
Does regular plotting and applying a colourmap not give what you want?
e.g.
A = magic(25);
figure; imagesc( A );
colorbar
You can certainly do mapping onto a colourmap manually and produce a true RGB image if you wish, but it is obviously more effort and data cursor information would reflect that it is now RGB rather than just give you the raw value.
Alternatively you can manipulate your data in some way if a straight linear mapping onto the colourmap is not what you want. Or create a custom colourmap.
Hard to say without seeing an example though.
Harish Rajan
Harish Rajan 2020년 3월 24일
But the point is I dont want to have an RGB image. The objective is to create a vector with colour values corresponding to the energy values, so that i can plot them normally using the plot command and when a issue a fill command for the markers, instead of all them being same colour they follow the one given by the colour map.

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

채택된 답변

J. Alex Lee
J. Alex Lee 2020년 3월 24일
A brute force way would be to interpolate...not sure if there's a better way
x = % ... data vector
indices = 0:255;
xref = linspace(min(x),max(x),length(indices));
indexed_x = interp1(xref,indices,'nearest');
% then you can map to whatever colormap you want, e.g.
graymap = gray(length(indices));
xcolors = graymap(indexed_x,:);
or something like that?
  댓글 수: 5
J. Alex Lee
J. Alex Lee 2020년 3월 24일
편집: J. Alex Lee 2020년 3월 24일
upon looking at docs of scatter(), i see that it is doing more or less exactly what you want, AND it can use the axes underlying colormap, to Adam's point ( you don't have to manually index). Take a look at the docs https://www.mathworks.com/help/matlab/ref/scatter.html#d120e1106626
scatter(x,y,sz,energy)
colormap gray
J. Alex Lee
J. Alex Lee 2020년 3월 24일
Just for completeness, Image Analyst's full example but with using scatter:
theta = linspace(0,(2*pi),30);
x=cos(theta);
y=sin(theta);
energy = linspace(0,1000,30);
figure(1);
scatter(x,y,120,energy,'filled')
grid on
axis square
colormap jet
% to do the black and white example:
% colormap gray

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

추가 답변 (1개)

Image Analyst
Image Analyst 2020년 3월 24일
Do you mean where the marker color is the color taken from the "energy" array, like this:
% Define our data.
theta = linspace(0,(2*pi),30);
x=cos(theta);
y=sin(theta);
energy = linspace(0,1000,30);
numPoints = length(x);
% Get a colormap, a unique color for every energy level
cmap = jet(numPoints); % Initialize jet colormap.
% Get energy in the range 1 to numPoints so we can use that to get a row from the colormap.
qEnergy = imquantize(energy, numPoints);
for k = 1 : numPoints
% Get the color for this energy level:
thisEnergy = qEnergy(k);
thisColor = cmap(thisEnergy);
fprintf('Plotting point #%d at (%.3f, %.3f) with color (%.3f, %.3f, %.3f)\n',...
k, x(k), y(k), cmap(k, 1), cmap(k, 2), cmap(k, 3));
plot(x(k), y(k), '.', 'Color', cmap(k, :), 'MarkerSize', 40);
hold on;
end
grid on;
axis square;
fprintf('Done running %s.m ...\n', mfilename);
  댓글 수: 4
Image Analyst
Image Analyst 2020년 3월 30일
Harish, you can see how I defined the colormap before the loop. You can make it be anything you want. You can also see how I said the 'MarkerSize' was 40 in the call to plot(). You can change that 40 to be whatever you want. It can even be a function of k, the loop iterator if you want.
Harish Rajan
Harish Rajan 2020년 3월 30일
Thank You

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

카테고리

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

태그

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by