MATLAB: Can I combine two markers together, and make them overlap

plot3

I have a number of points represented by a circle marker. These markers overlap each other, but one is always layered "above it"\"in front of it" so that one circle is seen completely while the second is hidden behind it. Can it be possible to combine them, so that the overlap is constant between both markers?
Thank you in advance!
First image shows my result. Second shows wanted result.

Best Answer

You can set different sizes for the markers so that they don't overlap completely.
plot(x, y, 'bo', 'MarkerSize', 15); % Use blue circles of size 15
plot(x, y, 'ro', 'MarkerSize', 25); % Use red circles of size 25.