Conditional formating for certain points in plot
2 views (last 30 days)
Show older comments
I am very new to matlab. I have a data set with 12000 value that I have created a variable for. I have created a scatter plot. In this plot I would like to change all values above 1 to plot in one color and all values below -1 to a different color. How would you write the conditional statement for this? Thanks.
Answers (1)
Darshan Ramakant Bhat
on 16 Jan 2018
Group the data set depending on the value. Then use the "hold on" option to do the scatter plot with different colors in the same figure.
You can specify the different colors using Name-Value properties in scatter(). Please refer the below document: https://www.mathworks.com/help/matlab/ref/scatter.html#input_argument_namevalue_d119e942892
0 Comments
See Also
Categories
Find more on Scatter Plots 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!