MATLAB: How to make the marker width more thicker

d

I have plot the data but what i want is to make the marker more thicker, so that it can be more clearly visible . I have attached the code .i would be grateful if you could help me .Thank you in advance .

Best Answer

Set LineWidth when calling plot function.
plot(rand(10, 1), rand(10, 1), 'bo','LineWidth', 2)