change marker color based on the values

114 views (last 30 days)
Hi,
I have a matrix B of 94859 x 3. In the the below command, I would like to change each individual marker color based on the data values stored in the B(:,3). Could somebody help me with this ??
plot (B(:,1),B(:,2), '*');

Accepted Answer

Mathieu NOE
Mathieu NOE on 18 May 2022
hello
my suggestions below
S = 35; % size of symbols in pixels
% normalize vector to go from zero to 1
normV = (B(:,3)-min(B(:,3)))./(max(B(:,3))-min(B(:,3)))
% blue to red.
C = [normV zeros(size(normV)) 1-normV];
figure
scatter(B(:,1),B(:,2),S,C,'Marker','s')
colorbar('vert');
% jet colors
CC = jet(numel(normV));
figure
scatter(B(:,1),B(:,2),S,CC,'Marker','s')
colorbar('vert');
  3 Comments

Sign in to comment.

More Answers (0)

Categories

Find more on Graphics Object Programming in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!