MATLAB: MatlabR2014b no more circle market type in plot

markerMATLABplotr2014b

Hi,
I had the following plot
plot(A(i,j),'linestyle','o')
that was perfectly working on Matlab R2013b. I have installed Matlab R2014b and it gives me the following error
Error using plot 'o' is not a valid value. Use one of these values: '-' | '–' | ':' | '-.' | 'none'.
Is not anymore available the circle marker type?
Best,
Maria

Best Answer

'o' is not a linestyle, it's a marker. Perhaps you were doing this before
plot(A(i,j), 'bo-');