I have some data that I want to plot in MATLAB. The data consists of x and y coordinates of the points that I want. At the moment, I am using the plot function to plot these points.
The data has a lot of points with the same coordinates. Now, what I want is that points with the same coordinates do not plot as a single dot, but a thicker dot.
For example, suppose the points are
1,1
2,1
2,1
3,2
2,1
2,1
1,1
Then, the plot should have a single dot at 3,2, but a thicker dot at 1,1 and even a thicker dot at 2,1
Can someone tell me how to do this?