Changing color of the Matlab plot at different ranges
18 次查看(过去 30 天)
显示 更早的评论
Hi,
I want to have the below graph in two colors, the y-values > 600 should be red.
Right now I have a basic plot command.
I have read the litreature on this issue on the forums and previously asked questions - but none of them related to my problem
0 个评论
采纳的回答
Image Analyst
2019-4-5
Try this:
indexes = yValues > 600;
plot(x(~indexes), y(~indexes), 'b.', 'MarkerSize', 10); % Plot in blue first.
hold on;
plot(x(indexes), y(indexes), 'r.', 'MarkerSize', 10); % Plot in red next.
更多回答(0 个)
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!