MATLAB: Matlab Plots Very Small dots

plot

Hi
I am facing this problem and it is getting quite annoying at the moment. Basically my matlab plots dots that are very small, it is so small that makes it hard to even see them. I used markersize property with value 10,20,10000…. and doesn't make any difference. Anyone knows what could have gone wrong ?
plot(data(i,1),data(i,2),'blue','markersize',200);
See if you can even spot it in this image 😀

Best Answer

The MarkerSize matters only, when a marker is used:
plot(1, 1, 'Marker', 'o', 'MarkerSize', 4, ...
'MarkerFaceColor', 'b', 'MarkerEdgeColor', 'b');
The size of a single dot does not depend on the LineWidth:
axes('NextPlot', 'add', 'YLim', [0, 3]);
plot(1, 1, 'LineWidth', 4);
plot([0.5, 1.5], [2, 2], 'LineWidth', 4)