Clear Filters
Clear Filters

How can I plot a graph where point colour relies on its value, based on several greater than and less than rules?

2 views (last 30 days)
I am trying to plot graphs where the points against the Y-axis determine the point itself to be one of five or more colours based on rules such as <0, >0 & <5, >5 & <42 etc.

Accepted Answer

Image Analyst
Image Analyst on 27 Apr 2017
Here's one way:
y = 10*rand(1, 150);
myColorMap = zeros(length(y), 3);
for k = 1 : length(y)
if y(k) < 3
myColorMap(k, :) = [1,0,0]; % Red
elseif y(k) < 6
myColorMap(k, :) = [1,0,1]; % Magenta
else
myColorMap(k, :) = [0,0,1]; % Blue
end
end
x = 1:length(y);
scatter(x, y, 20, myColorMap, 'filled');
grid on;

More Answers (1)

Steven Lord
Steven Lord on 27 Apr 2017
Use your conditions to generate a vector of values that you specify as the c input in a call to the scatter function. If your conditions are simply "In the range (a, b)" (with the possibility for one or both of the endpoints to be inclusive) consider using discretize or histcounts to generate the vector.

Community Treasure Hunt

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

Start Hunting!